diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-01-20 21:51:21 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-01-20 21:51:21 +0000 |
commit | 2f8b9f66c2a47bbd6a8c933c5eb1088bddcf63cb (patch) | |
tree | 8005e0f78fc41e2707ab3241bd6bdff6849a6ed8 /networking | |
parent | a17d73a5c48f3237166b5966b6ec5a55c226719d (diff) | |
download | busybox-w32-2f8b9f66c2a47bbd6a8c933c5eb1088bddcf63cb.tar.gz busybox-w32-2f8b9f66c2a47bbd6a8c933c5eb1088bddcf63cb.tar.bz2 busybox-w32-2f8b9f66c2a47bbd6a8c933c5eb1088bddcf63cb.zip |
Fix naming to reflect reality
git-svn-id: svn://busybox.net/trunk/busybox@1630 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-rw-r--r-- | networking/nslookup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/nslookup.c b/networking/nslookup.c index 62fea35fa..5a6387d79 100644 --- a/networking/nslookup.c +++ b/networking/nslookup.c | |||
@@ -45,7 +45,7 @@ | |||
45 | * I could dig through /etc/resolv.conf, but is there a | 45 | * I could dig through /etc/resolv.conf, but is there a |
46 | * better (programatic) way? | 46 | * better (programatic) way? |
47 | */ | 47 | */ |
48 | static inline void server_fprint(void) | 48 | static inline void server_print(void) |
49 | { | 49 | { |
50 | printf("Server: %s\n", "default"); | 50 | printf("Server: %s\n", "default"); |
51 | printf("Address: %s\n\n", "default"); | 51 | printf("Address: %s\n\n", "default"); |
@@ -159,7 +159,7 @@ int nslookup_main(int argc, char **argv) | |||
159 | usage(nslookup_usage); | 159 | usage(nslookup_usage); |
160 | } | 160 | } |
161 | 161 | ||
162 | server_fprint(); | 162 | server_print(); |
163 | if (is_ip_address(argv[1])) { | 163 | if (is_ip_address(argv[1])) { |
164 | host = gethostbyaddr_wrapper(argv[1]); | 164 | host = gethostbyaddr_wrapper(argv[1]); |
165 | } else { | 165 | } else { |
@@ -169,4 +169,4 @@ int nslookup_main(int argc, char **argv) | |||
169 | return EXIT_SUCCESS; | 169 | return EXIT_SUCCESS; |
170 | } | 170 | } |
171 | 171 | ||
172 | /* $Id: nslookup.c,v 1.14 2001/01/20 16:22:58 andersen Exp $ */ | 172 | /* $Id: nslookup.c,v 1.15 2001/01/20 21:51:21 andersen Exp $ */ |