commit | feb7ae7f01e13dce31118e5a58b09b237d25e58c | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Mon Oct 01 12:05:12 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Mon Oct 01 12:05:12 2007 +0000 |
tree | b36f1a78441f586aa8bf5a2c8b055296d30c2777 | |
parent | 0c97c9d43707da745fe2bc62ab2a69497ceaf666 [diff] [blame] |
printf("%s\n") -> puts()
diff --git a/networking/nslookup.c b/networking/nslookup.c index e5bb56f..fab7e3e 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c
@@ -69,7 +69,7 @@ unsigned cnt = 0; printf("%-10s %s\n", header, hostname); - // printf("%s\n", cur->ai_canonname); ? + // puts(cur->ai_canonname); ? while (cur) { char *dotted, *revhost; dotted = xmalloc_sockaddr2dotted_noport(cur->ai_addr);