diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-10-04 23:15:07 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-10-04 23:15:07 +0000 |
commit | f35fad662faec3dfba40a1ed881f04baff370818 (patch) | |
tree | ff2e59ca1634f6d7842c61d82e6aac3876875064 /usr.bin/netstat | |
parent | 7d2ab1b89c04983f1166666b9f7ff59d75e577fa (diff) |
oops
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r-- | usr.bin/netstat/route.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c index 902b976041b..30a63053806 100644 --- a/usr.bin/netstat/route.c +++ b/usr.bin/netstat/route.c @@ -1,4 +1,4 @@ -/* $OpenBSD: route.c,v 1.58 2003/10/04 21:18:57 deraadt Exp $ */ +/* $OpenBSD: route.c,v 1.59 2003/10/04 23:15:06 deraadt Exp $ */ /* $NetBSD: route.c,v 1.15 1996/05/07 02:55:06 thorpej Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "from: @(#)route.c 8.3 (Berkeley) 3/9/94"; #else -static char *rcsid = "$OpenBSD: route.c,v 1.58 2003/10/04 21:18:57 deraadt Exp $"; +static char *rcsid = "$OpenBSD: route.c,v 1.59 2003/10/04 23:15:06 deraadt Exp $"; #endif #endif /* not lint */ @@ -395,7 +395,7 @@ ntreestuff(void) exit(1); } if ((buf = malloc(needed)) == NULL) - errx(1, NULL); + err(1, NULL); if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) { perror("sysctl of routing table"); exit(1); |