summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-05 12:04:53 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-05 12:04:53 +0000
commitd47deefe16fa9b262274da2735a281529d944c69 (patch)
tree6cfad2d23984b5d41328eb4f1d2ba44bfeac1dee /usr.sbin
parentf0925d53ea414ee3ac3773424ff109095fc87504 (diff)
bigger buffer
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/traceroute/traceroute.c2
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;