diff options
author | 2002-09-06 21:49:21 +0000 | |
---|---|---|
committer | 2002-09-06 21:49:21 +0000 | |
commit | 95709839569850d25bb554e5d851a54062dca1d0 (patch) | |
tree | fb969641df0a8372a05742994b50b9301cc60680 | |
parent | no, make INITQFNAMES without a terminal ; (diff) | |
download | wireguard-openbsd-95709839569850d25bb554e5d851a54062dca1d0.tar.xz wireguard-openbsd-95709839569850d25bb554e5d851a54062dca1d0.zip |
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; |