diff options
author | sef <sef@FreeBSD.org> | 1996-10-08 19:16:24 +0000 |
---|---|---|
committer | sef <sef@FreeBSD.org> | 1996-10-08 19:16:24 +0000 |
commit | 5c2cf660b66159b8e442225db06dfd47b89e7f50 (patch) | |
tree | f011abdec35056fb8df375557495c44b36589cb7 /contrib | |
parent | 376ed225599f5b72433e40554a34477a97185b8d (diff) | |
download | FreeBSD-src-5c2cf660b66159b8e442225db06dfd47b89e7f50.zip FreeBSD-src-5c2cf660b66159b8e442225db06dfd47b89e7f50.tar.gz |
Fix a typo. Oops.
Submitted by: asami
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/traceroute/traceroute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/traceroute/traceroute.c b/contrib/traceroute/traceroute.c index a214352..ba87053 100644 --- a/contrib/traceroute/traceroute.c +++ b/contrib/traceroute/traceroute.c @@ -24,7 +24,7 @@ static const char copyright[] = "@(#) Copyright (c) 1988, 1989, 1991, 1994, 1995, 1996\n\ The Regents of the University of California. All rights reserved.\n"; static const char rcsid[] = - "@(#)$Header: /home/ncvs/src/contrib/traceroute/traceroute.c,v 1.3 1996/10/05 01:43:13 sef Exp $ (LBL)"; + "@(#)$Header: /home/ncvs/src/contrib/traceroute/traceroute.c,v 1.4 1996/10/08 02:44:26 sef Exp $ (LBL)"; #endif /* @@ -706,7 +706,7 @@ main(int argc, char **argv) (void)fflush(stdout); } if (sump) { - Printf(" (%d%% loss)", (lost * 100) / nprobes); + Printf(" (%d%% loss)", (loss * 100) / nprobes); } putchar('\n'); if (got_there || |