From 38e1238d12b68a8a78c1d2d1e9a1bcf70ad7a58b Mon Sep 17 00:00:00 2001 From: kstailey Date: Sat, 19 Apr 1997 19:10:22 +0000 Subject: [PATCH] thorpej: getopt() returns an int, not a char. --- usr.sbin/ipftest/ipt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/ipftest/ipt.c b/usr.sbin/ipftest/ipt.c index f5a2fec52f4..6f1ec19f6c6 100644 --- a/usr.sbin/ipftest/ipt.c +++ b/usr.sbin/ipftest/ipt.c @@ -41,7 +41,7 @@ #if !defined(lint) && defined(LIBC_SCCS) static char sccsid[] = "@(#)ipt.c 1.19 6/3/96 (C) 1993-1996 Darren Reed"; -static char rcsid[] = "$Id: ipt.c,v 1.8 1997/02/11 22:23:58 kstailey Exp $"; +static char rcsid[] = "$Id: ipt.c,v 1.9 1997/04/19 19:10:22 kstailey Exp $"; #endif extern int fr_check(); @@ -62,7 +62,7 @@ char *argv[]; struct frentry *f; struct ip *ip; u_long buf[64]; - char c; + int c; char *rules = NULL, *datain = NULL, *iface = NULL; int fd, i, dir = 0; -- 2.20.1