diff options
author | 1996-08-05 12:04:52 +0000 | |
---|---|---|
committer | 1996-08-05 12:04:52 +0000 | |
commit | cf1ba0938ddfbd1d215d0489a8a4f8a7eff3d2b2 (patch) | |
tree | e289cfc0a3460a653998818f11f65d999e31e951 | |
parent | fix id (diff) | |
download | wireguard-openbsd-cf1ba0938ddfbd1d215d0489a8a4f8a7eff3d2b2.tar.xz wireguard-openbsd-cf1ba0938ddfbd1d215d0489a8a4f8a7eff3d2b2.zip |
bigger buffer
-rw-r--r-- | usr.sbin/traceroute/traceroute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/traceroute/traceroute.c b/usr.sbin/traceroute/traceroute.c index ae3e7fecfd0..15abc8d4ad4 100644 --- a/usr.sbin/traceroute/traceroute.c +++ b/usr.sbin/traceroute/traceroute.c @@ -798,7 +798,7 @@ inetname(in) struct in_addr in; { register char *cp; - static char line[50]; + static char line[MAXHOSTNAMELEN]; struct hostent *hp; static char domain[MAXHOSTNAMELEN + 1]; static int first = 1; |