diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2010-10-26 15:38:59 +0200 |
---|---|---|
committer | Francois Perrad <francois.perrad@gadz.org> | 2010-10-26 15:38:59 +0200 |
commit | 29c798752c8061ce510de636a0ba601ffac38f4e (patch) | |
tree | 350cd4eaa0654be3efe8f3e5279d4af3b7f5e5bd | |
parent | Github: API completed (diff) | |
download | api-description-29c798752c8061ce510de636a0ba601ffac38f4e.tar.gz |
spore2dot: fix authentication
-rw-r--r-- | utils/spore2dot.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/spore2dot.pl b/utils/spore2dot.pl index 57588e9..034e8c7 100644 --- a/utils/spore2dot.pl +++ b/utils/spore2dot.pl @@ -66,7 +66,7 @@ foreach my $spec (@specs) { $first = 0; } print ")"; - print " ⊗" if $desc->{authentication}; + print " ⊗" if $desc->{authentication} || $spec->{authentication}; print "\\l"; print " ", $desc->{method}, " ", $desc->{path}, "\\l" if $ENV{SPORE_PATH}; } |