diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 21:49:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 21:49:22 +0000 |
commit | 7fdbf54d9fe9d3986571b4041d53233ca0ea0e41 (patch) | |
tree | e27e70b0264039f7a4ebe465a4db01d657219482 | |
parent | fcb16ba9faf984d2073309b9abe520b65ed2846d (diff) |
cope with INITQFNAMES without a ;
-rw-r--r-- | usr.sbin/edquota/edquota.c | 4 | ||||
-rw-r--r-- | usr.sbin/quotaon/quotaon.c | 4 | ||||
-rw-r--r-- | usr.sbin/repquota/repquota.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index 7610dfac33f..b959ccfd141 100644 --- a/usr.sbin/edquota/edquota.c +++ b/usr.sbin/edquota/edquota.c @@ -42,7 +42,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)edquota.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: edquota.c,v 1.34 2002/09/06 18:29:37 deraadt Exp $"; +static char *rcsid = "$Id: edquota.c,v 1.35 2002/09/06 21:49:21 deraadt Exp $"; #endif /* not lint */ /* @@ -67,7 +67,7 @@ static char *rcsid = "$Id: edquota.c,v 1.34 2002/09/06 18:29:37 deraadt Exp $"; #include "pathnames.h" char *qfname = QUOTAFILENAME; -char *qfextension[] = INITQFNAMES +char *qfextension[] = INITQFNAMES; char *quotagroup = QUOTAGROUP; char tmpfil[] = _PATH_TMPFILE; diff --git a/usr.sbin/quotaon/quotaon.c b/usr.sbin/quotaon/quotaon.c index 61d475741a4..52d261e7751 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.16 2002/09/06 18:29:37 deraadt Exp $"; +static char *rcsid = "$Id: quotaon.c,v 1.17 2002/09/06 21:49:21 deraadt Exp $"; #endif /* not lint */ /* @@ -57,7 +57,7 @@ static char *rcsid = "$Id: quotaon.c,v 1.16 2002/09/06 18:29:37 deraadt Exp $"; #include <fstab.h> char *qfname = QUOTAFILENAME; -char *qfextension[] = INITQFNAMES +char *qfextension[] = INITQFNAMES; int aflag; /* all file systems */ int gflag; /* operate on group quotas */ diff --git a/usr.sbin/repquota/repquota.c b/usr.sbin/repquota/repquota.c index 3abb05ae3c2..6218baf5226 100644 --- a/usr.sbin/repquota/repquota.c +++ b/usr.sbin/repquota/repquota.c @@ -42,7 +42,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)repquota.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: repquota.c,v 1.18 2002/09/06 18:29:37 deraadt Exp $"; +static char *rcsid = "$Id: repquota.c,v 1.19 2002/09/06 21:49:21 deraadt Exp $"; #endif /* not lint */ /* @@ -60,7 +60,7 @@ static char *rcsid = "$Id: repquota.c,v 1.18 2002/09/06 18:29:37 deraadt Exp $"; #include <errno.h> char *qfname = QUOTAFILENAME; -char *qfextension[] = INITQFNAMES +char *qfextension[] = INITQFNAMES; struct fileusage { struct fileusage *fu_next; |