diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2003-04-14 22:24:59 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2003-04-14 22:24:59 +0000 |
commit | b788ade4f4a2d04e2eb7643ff8ca9874ed48c934 (patch) | |
tree | a53c9b93f0c8fb92cbed36988e272e4933d9c0ce /usr.sbin/route6d/route6d.c | |
parent | 4319316c3951835623b59499d2157d55a07e0005 (diff) |
%d is 12 chars big, not 10; ok deraadt
Diffstat (limited to 'usr.sbin/route6d/route6d.c')
-rw-r--r-- | usr.sbin/route6d/route6d.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c index 6a8519f2a1d..acfa128e260 100644 --- a/usr.sbin/route6d/route6d.c +++ b/usr.sbin/route6d/route6d.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route6d.c,v 1.33 2002/10/26 20:16:13 itojun Exp $ */ +/* $OpenBSD: route6d.c,v 1.34 2003/04/14 22:24:58 pvalchev Exp $ */ /* $KAME: route6d.c,v 1.94 2002/10/26 20:08:55 itojun Exp $ */ /* @@ -31,7 +31,7 @@ */ #if 0 -static char _rcsid[] = "$OpenBSD: route6d.c,v 1.33 2002/10/26 20:16:13 itojun Exp $"; +static char _rcsid[] = "$OpenBSD: route6d.c,v 1.34 2003/04/14 22:24:58 pvalchev Exp $"; #endif #include <stdio.h> @@ -587,7 +587,7 @@ init() int i, error; const int int0 = 0, int1 = 1, int255 = 255; struct addrinfo hints, *res; - char port[10]; + char port[12]; ifc = (struct ifc *)NULL; nifc = 0; |