aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-01 12:05:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-01 12:05:12 +0000
commitfeb7ae7f01e13dce31118e5a58b09b237d25e58c (patch)
treeb36f1a78441f586aa8bf5a2c8b055296d30c2777 /networking
parent0c97c9d43707da745fe2bc62ab2a69497ceaf666 (diff)
downloadbusybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.gz
busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.tar.bz2
busybox-w32-feb7ae7f01e13dce31118e5a58b09b237d25e58c.zip
printf("%s\n") -> puts()
Diffstat (limited to 'networking')
-rw-r--r--networking/nslookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c
index e5bb56f81..fab7e3efc 100644
--- a/networking/nslookup.c
+++ b/networking/nslookup.c
@@ -69,7 +69,7 @@ static int print_host(const char *hostname, const char *header)
69 unsigned cnt = 0; 69 unsigned cnt = 0;
70 70
71 printf("%-10s %s\n", header, hostname); 71 printf("%-10s %s\n", header, hostname);
72 // printf("%s\n", cur->ai_canonname); ? 72 // puts(cur->ai_canonname); ?
73 while (cur) { 73 while (cur) {
74 char *dotted, *revhost; 74 char *dotted, *revhost;
75 dotted = xmalloc_sockaddr2dotted_noport(cur->ai_addr); 75 dotted = xmalloc_sockaddr2dotted_noport(cur->ai_addr);