diff options
author | Philippe Charnier <charnier@FreeBSD.org> | 1998-01-12 08:01:40 +0000 |
---|---|---|
committer | Philippe Charnier <charnier@FreeBSD.org> | 1998-01-12 08:01:40 +0000 |
commit | bee6f9e3346d70f9ff6315356645299dbf7bb9d0 (patch) | |
tree | eeef1e5612d38182b8a953ebeee5401db8d8af24 /usr.sbin/stallion | |
parent | 373c037f072f69b59e8b2856eb46ec20e0e2f9fb (diff) |
Remove optind (getopt() already knows about it).
Notes
Notes:
svn path=/head/; revision=32474
Diffstat (limited to 'usr.sbin/stallion')
-rw-r--r-- | usr.sbin/stallion/stlstats/stlstats.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/stallion/stlstats/stlstats.c b/usr.sbin/stallion/stlstats/stlstats.c index d4d6941436b8..b856df4e9fd2 100644 --- a/usr.sbin/stallion/stlstats/stlstats.c +++ b/usr.sbin/stallion/stlstats/stlstats.c @@ -38,7 +38,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: stlstats.c,v 1.6 1997/10/20 12:51:34 charnier Exp $"; #endif /* not lint */ #include <err.h> @@ -500,10 +500,9 @@ void localexit(int nr) void main(int argc, char *argv[]) { struct stat statinfo; - int optind, c, useport; + int c, useport; char *portdev; - optind = 0; ctrldevice = defdevice; useport = 0; |