summaryrefslogtreecommitdiffstats
path: root/usr.sbin/quotaon
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-04-21 23:38:17 +0000
committerderaadt <deraadt@openbsd.org>1996-04-21 23:38:17 +0000
commitf3bae140e877f130f33051ddb228cb34a056c92b (patch)
treec5f519d1e41a8239f986cc5a6f4fb0b979e31e11 /usr.sbin/quotaon
parentpartial sync with netbsd 960418, more to come (diff)
downloadwireguard-openbsd-f3bae140e877f130f33051ddb228cb34a056c92b.tar.xz
wireguard-openbsd-f3bae140e877f130f33051ddb228cb34a056c92b.zip
sync to netbsd 960418
Diffstat (limited to 'usr.sbin/quotaon')
-rw-r--r--usr.sbin/quotaon/quotaon.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/quotaon/quotaon.c b/usr.sbin/quotaon/quotaon.c
index c3267a989a9..bb0fdc0aeb0 100644
--- a/usr.sbin/quotaon/quotaon.c
+++ b/usr.sbin/quotaon/quotaon.c
@@ -42,7 +42,7 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)quotaon.c 8.1 (Berkeley) 6/6/93";*/
-static char *rcsid = "$Id: quotaon.c,v 1.4 1996/01/07 05:28:05 deraadt Exp $";
+static char *rcsid = "$Id: quotaon.c,v 1.5 1996/04/21 23:41:36 deraadt Exp $";
#endif /* not lint */
/*
@@ -69,11 +69,12 @@ main(argc, argv)
char **argv;
{
register struct fstab *fs;
- char ch, *qfnp, *whoami, *rindex();
+ char *qfnp, *whoami, *rindex();
long argnum, done = 0;
int i, offmode = 0, errs = 0;
extern char *optarg;
extern int optind;
+ int ch;
whoami = rindex(*argv, '/') + 1;
if (whoami == (char *)1)
@@ -85,7 +86,7 @@ main(argc, argv)
whoami);
exit(1);
}
- while ((ch = getopt(argc, argv, "avug")) != EOF) {
+ while ((ch = getopt(argc, argv, "avug")) != -1) {
switch(ch) {
case 'a':
aflag++;