diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-26 00:37:00 +0000 |
commit | c6f188def8c5496dbd65c9be6ca3050286db7227 (patch) | |
tree | d8e1e56c728628c15f66cb88a6e54f368c806939 /networking/nslookup.c | |
parent | e63a0dee9e559110bcaec494ae5e7fc78c4141c7 (diff) | |
download | busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.gz busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.tar.bz2 busybox-w32-c6f188def8c5496dbd65c9be6ca3050286db7227.zip |
silly size savings and capitalization fixes
Diffstat (limited to 'networking/nslookup.c')
-rw-r--r-- | networking/nslookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c index b8e454cde..54e71c47e 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c | |||
@@ -73,7 +73,7 @@ static int addr_list_fprint(char **h_addr_list) | |||
73 | } | 73 | } |
74 | 74 | ||
75 | } | 75 | } |
76 | printf("\n"); | 76 | puts(""); |
77 | return 0; | 77 | return 0; |
78 | } | 78 | } |
79 | 79 | ||
@@ -123,7 +123,7 @@ static inline void server_print(void) | |||
123 | char *ip = inet_ntoa(def.sin_addr); | 123 | char *ip = inet_ntoa(def.sin_addr); |
124 | 124 | ||
125 | hostent_fprint(gethostbyaddr_wrapper(ip), "Server:"); | 125 | hostent_fprint(gethostbyaddr_wrapper(ip), "Server:"); |
126 | printf("\n"); | 126 | puts(""); |
127 | } | 127 | } |
128 | 128 | ||
129 | /* alter the global _res nameserver structure to use | 129 | /* alter the global _res nameserver structure to use |