diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-20 21:51:21 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-20 21:51:21 +0000 |
commit | fe9888ad9783e3ae3e6ab443c8eef0ef86271f78 (patch) | |
tree | 8005e0f78fc41e2707ab3241bd6bdff6849a6ed8 /networking | |
parent | 965fa326a1cfd8ce480982808a9504c044e99c1b (diff) | |
download | busybox-fe9888ad9783e3ae3e6ab443c8eef0ef86271f78.tar.gz |
Fix naming to reflect reality
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 @@ * I could dig through /etc/resolv.conf, but is there a * better (programatic) way? */ -static inline void server_fprint(void) +static inline void server_print(void) { printf("Server: %s\n", "default"); printf("Address: %s\n\n", "default"); @@ -159,7 +159,7 @@ int nslookup_main(int argc, char **argv) usage(nslookup_usage); } - server_fprint(); + server_print(); if (is_ip_address(argv[1])) { host = gethostbyaddr_wrapper(argv[1]); } else { @@ -169,4 +169,4 @@ int nslookup_main(int argc, char **argv) return EXIT_SUCCESS; } -/* $Id: nslookup.c,v 1.14 2001/01/20 16:22:58 andersen Exp $ */ +/* $Id: nslookup.c,v 1.15 2001/01/20 21:51:21 andersen Exp $ */ |