diff options
author | 2001-06-10 01:24:01 +0000 | |
---|---|---|
committer | 2001-06-10 01:24:01 +0000 | |
commit | 9c51cff4e0d27fd0df52db1ab542c91d73ccf4c0 (patch) | |
tree | 1c08212b69bd3782f619af9052948cd11238a752 | |
parent | Revert to older demangle. Not tested nor updated yet. (diff) | |
download | wireguard-openbsd-9c51cff4e0d27fd0df52db1ab542c91d73ccf4c0.tar.xz wireguard-openbsd-9c51cff4e0d27fd0df52db1ab542c91d73ccf4c0.zip |
Sprintf/sprintf no longer used, remove it
-rw-r--r-- | usr.sbin/traceroute/traceroute.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/traceroute/traceroute.c b/usr.sbin/traceroute/traceroute.c index 0099abb5d09..e1fd3864134 100644 --- a/usr.sbin/traceroute/traceroute.c +++ b/usr.sbin/traceroute/traceroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: traceroute.c,v 1.37 2001/06/09 21:06:23 pvalchev Exp $ */ +/* $OpenBSD: traceroute.c,v 1.38 2001/06/10 01:24:01 deraadt Exp $ */ /* $NetBSD: traceroute.c,v 1.10 1995/05/21 15:50:45 mycroft Exp $ */ /*- @@ -47,7 +47,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)traceroute.c 8.1 (Berkeley) 6/6/93";*/ #else -static char rcsid[] = "$OpenBSD: traceroute.c,v 1.37 2001/06/09 21:06:23 pvalchev Exp $"; +static char rcsid[] = "$OpenBSD: traceroute.c,v 1.38 2001/06/10 01:24:01 deraadt Exp $"; #endif #endif /* not lint */ @@ -247,7 +247,6 @@ static char rcsid[] = "$OpenBSD: traceroute.c,v 1.37 2001/06/09 21:06:23 pvalche #include <unistd.h> #define Fprintf (void)fprintf -#define Sprintf (void)sprintf #define Printf (void)printf #define MAX_LSRR ((MAX_IPOPTLEN - 4) / 4) |