diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-29 01:28:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-01-29 01:28:04 +0000 |
commit | 69209242aafc4e0e192c289b0da6e12b86147c6d (patch) | |
tree | cf499c263389722ff0d64faef59094d00512d1af /sbin/ipf/ipf.c | |
parent | d788c8ce824fd0de30682c3313c770356115065f (diff) |
getopt & int
Diffstat (limited to 'sbin/ipf/ipf.c')
-rw-r--r-- | sbin/ipf/ipf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipf/ipf.c b/sbin/ipf/ipf.c index 2025449699e..3d4eb97381f 100644 --- a/sbin/ipf/ipf.c +++ b/sbin/ipf/ipf.c @@ -34,7 +34,7 @@ #ifndef lint static char sccsid[] = "@(#)ipf.c 1.23 6/5/96 (C) 1993-1995 Darren Reed"; -static char rcsid[] = "$Id: ipf.c,v 1.8 1997/01/17 07:12:16 millert Exp $"; +static char rcsid[] = "$Id: ipf.c,v 1.9 1997/01/29 01:28:03 deraadt Exp $"; #endif #if SOLARIS @@ -55,7 +55,7 @@ int main(argc,argv) int argc; char *argv[]; { - char c; + int c; while ((c = getopt(argc, argv, "AsInopvdryf:F:l:EDzZ")) != -1) { switch (c) |