aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-02-07 05:29:42 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-02-07 05:29:42 +0000
commit74bc01e03e96d5a6a318688d2ee8c620f32ce928 (patch)
treedccf8f905fc5807239883da9fca6597037d487fc /networking
parentcac2faf4271a09ae2e37e87cbd7d6ea363667d51 (diff)
downloadbusybox-w32-74bc01e03e96d5a6a318688d2ee8c620f32ce928.tar.gz
busybox-w32-74bc01e03e96d5a6a318688d2ee8c620f32ce928.tar.bz2
busybox-w32-74bc01e03e96d5a6a318688d2ee8c620f32ce928.zip
A few minor updates. ;-)
Seriously though, read the Changelog for busybox 0.42, which this is about to become... -Erik git-svn-id: svn://busybox.net/trunk/busybox@351 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking')
-rw-r--r--networking/hostname.c2
-rw-r--r--networking/nslookup.c2
-rw-r--r--networking/ping.c5
3 files changed, 5 insertions, 4 deletions
diff --git a/networking/hostname.c b/networking/hostname.c
index 20e174187..68a560950 100644
--- a/networking/hostname.c
+++ b/networking/hostname.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * $Id: hostname.c,v 1.5 1999/12/09 06:11:36 andersen Exp $ 2 * $Id: hostname.c,v 1.6 2000/02/07 05:29:42 erik Exp $
3 * Mini hostname implementation for busybox 3 * Mini hostname implementation for busybox
4 * 4 *
5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> 5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
diff --git a/networking/nslookup.c b/networking/nslookup.c
index 82d3b3690..969d0b19b 100644
--- a/networking/nslookup.c
+++ b/networking/nslookup.c
@@ -185,4 +185,4 @@ nslookup_main(int argc, char **argv)
185 return 0; 185 return 0;
186} 186}
187 187
188/* $Id: nslookup.c,v 1.2 2000/01/30 09:47:16 beppu Exp $ */ 188/* $Id: nslookup.c,v 1.3 2000/02/07 05:29:42 erik Exp $ */
diff --git a/networking/ping.c b/networking/ping.c
index 5b680195a..3ffbdc553 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * $Id: ping.c,v 1.9 2000/01/29 06:29:32 erik Exp $ 2 * $Id: ping.c,v 1.10 2000/02/07 05:29:42 erik Exp $
3 * Mini ping implementation for busybox 3 * Mini ping implementation for busybox
4 * 4 *
5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> 5 * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -175,7 +175,8 @@ extern int ping_main(int argc, char **argv)
175static const char* ping_usage = "ping [OPTION]... host\n\n" 175static const char* ping_usage = "ping [OPTION]... host\n\n"
176"Send ICMP ECHO_REQUEST packets to network hosts.\n\n" 176"Send ICMP ECHO_REQUEST packets to network hosts.\n\n"
177"Options:\n" 177"Options:\n"
178"\t-q\t\tQuiet mode, only displays output at start and when finished.\n" 178"\t-q\t\tQuiet mode, only displays output at start"
179"\t\t\tand when finished.\n"
179"\t-c COUNT\tSend only COUNT pings.\n"; 180"\t-c COUNT\tSend only COUNT pings.\n";
180 181
181static char *hostname = NULL; 182static char *hostname = NULL;