diff options
author | 2004-06-09 02:01:15 +0000 | |
---|---|---|
committer | 2004-06-09 02:01:15 +0000 | |
commit | 7c1ebf3eda9203b778ace9f5b4e9bd0071aa99b9 (patch) | |
tree | 3b19318701c0f6fe6a6c20af05ed83e165f409cf | |
parent | sync (diff) | |
download | wireguard-openbsd-7c1ebf3eda9203b778ace9f5b4e9bd0071aa99b9.tar.xz wireguard-openbsd-7c1ebf3eda9203b778ace9f5b4e9bd0071aa99b9.zip |
correct mistake in usage(). Chris Pinnock
-rw-r--r-- | sbin/ping6/ping6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ping6/ping6.c b/sbin/ping6/ping6.c index e0249176f70..9984dc30c6b 100644 --- a/sbin/ping6/ping6.c +++ b/sbin/ping6/ping6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ping6.c,v 1.57 2004/01/25 03:39:15 deraadt Exp $ */ +/* $OpenBSD: ping6.c,v 1.58 2004/06/09 02:01:15 itojun Exp $ */ /* $KAME: ping6.c,v 1.163 2002/10/25 02:19:06 itojun Exp $ */ /* @@ -2695,6 +2695,6 @@ usage(void) "] [-a [aAclsg]] [-b sockbufsiz] [-c count] \n" "\t[-I interface] [-i wait] [-l preload] [-p pattern] " "[-S sourceaddr]\n" - "\t[-s packetsize] [-h hoplimit] [hops...] [-g gateway] host\n"); + "\t[-s packetsize] [-h hoplimit] [-g gateway] [hops...] host\n"); exit(1); } |