diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-06-05 12:58:43 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-06-05 12:58:43 +0000 |
commit | e7139c479a49b073f6117a69cebfa912ad24f6e7 (patch) | |
tree | cd3cc14e2048b5afad913af92930a76d1e2712e4 | |
parent | 49cb5685be51aa587b7599c571e414a6d2976316 (diff) |
correct option parser typo. -f, not -b.
-rw-r--r-- | usr.sbin/traceroute6/traceroute6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/traceroute6/traceroute6.c b/usr.sbin/traceroute6/traceroute6.c index 76a1d1bfcd7..db1c3b6e506 100644 --- a/usr.sbin/traceroute6/traceroute6.c +++ b/usr.sbin/traceroute6/traceroute6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: traceroute6.c,v 1.8 2000/04/20 17:43:46 angelos Exp $ */ +/* $OpenBSD: traceroute6.c,v 1.9 2000/06/05 12:58:42 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -429,7 +429,7 @@ main(argc, argv) #endif freehostent(hp); break; - case 'b': + case 'f': first_hop = atoi(optarg); if (first_hop > max_hops) { Fprintf(stderr, |