aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-12-08 04:13:59 +0000
committerEric Andersen <andersen@codepoet.org>1999-12-08 04:13:59 +0000
commitfcdb57a0fc6adebf24db9c10163f319be79da55f (patch)
treecbe5fbaaf407377289e11e82f066d4bd79d44ebe /networking
parentd29edf34d6432a310dbb8124cd7963c34d31a69c (diff)
downloadbusybox-fcdb57a0fc6adebf24db9c10163f319be79da55f.tar.gz
Fixes
Diffstat (limited to 'networking')
-rw-r--r--networking/ping.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/ping.c b/networking/ping.c
index 9f8a103bd..5659d81bc 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -1,5 +1,5 @@
/*
- * $Id: ping.c,v 1.1 1999/12/07 23:14:59 andersen Exp $
+ * $Id: ping.c,v 1.2 1999/12/08 04:13:59 andersen Exp $
* Mini ping implementation for busybox
*
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@@ -64,8 +64,8 @@
static const char* ping_usage = "ping [OPTION]... host\n\n"
"Options:\n"
-"\t-q\t\tquiet\n"
-"\t-c\t\tping count\n";
+"\t-q\t\tQuiet output. Dipslays nothing except at start and when finished.\n"
+"\t-c COUNT\t\tSend only COUNT ECHO_RESPONSE packets.\n";
static char *hostname = NULL;
static struct sockaddr_in pingaddr;