diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-10-13 08:32:18 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-10-13 08:32:18 +0000 |
commit | b802071987f672cddcad00742c50a641a4e23c13 (patch) | |
tree | 45e99f21c09f2af6de15acaa8038e268f80b118b /usr.sbin/tcpdump/print-rip.c | |
parent | cf87996b56dadea3dad3ad8c8ad568c6af538b5a (diff) |
fix build on alpha with -Werror; David Leonard <david.leonard@csee.uq.edu.au>
Diffstat (limited to 'usr.sbin/tcpdump/print-rip.c')
-rw-r--r-- | usr.sbin/tcpdump/print-rip.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-rip.c b/usr.sbin/tcpdump/print-rip.c index fddadd701e8..2cb6b201d0c 100644 --- a/usr.sbin/tcpdump/print-rip.c +++ b/usr.sbin/tcpdump/print-rip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print-rip.c,v 1.8 2000/10/03 14:21:57 ho Exp $ */ +/* $OpenBSD: print-rip.c,v 1.9 2000/10/13 08:32:16 jakob Exp $ */ /* * Copyright (c) 1989, 1990, 1991, 1993, 1994, 1996 @@ -23,7 +23,7 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-rip.c,v 1.8 2000/10/03 14:21:57 ho Exp $ (LBL)"; + "@(#) $Header: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-rip.c,v 1.9 2000/10/13 08:32:16 jakob Exp $ (LBL)"; #endif #include <sys/param.h> @@ -38,6 +38,7 @@ static const char rcsid[] = #include <netinet/udp_var.h> #include <stdio.h> +#include <string.h> #include <ctype.h> #include "interface.h" |