strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a185ae
)
fixed another printf statement
author
Andreas Steffen
<andreas.steffen@strongswan.org>
Tue, 9 Apr 2013 13:16:49 +0000
(15:16 +0200)
committer
Andreas Steffen
<andreas.steffen@strongswan.org>
Tue, 9 Apr 2013 13:16:49 +0000
(15:16 +0200)
scripts/dnssec.c
patch
|
blob
|
history
diff --git
a/scripts/dnssec.c
b/scripts/dnssec.c
index
213d028
..
315a146
100644
(file)
--- a/
scripts/dnssec.c
+++ b/
scripts/dnssec.c
@@
-104,9
+104,7
@@
int main(int argc, char *argv[])
enumerator = rrset->create_rr_enumerator(rrset);
while (enumerator->enumerate(enumerator, &rr))
{
- printf(" name: ");
- printf(rr->get_name(rr));
- printf("\n");
+ printf(" name: %s\n", rr->get_name(rr));
}
enumerator = rrset->create_rrsig_enumerator(rrset);