diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-24 14:32:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-24 14:32:32 +0000 |
commit | 5f042ee4de3474f1c14f1e2ad7e659c5903e87d9 (patch) | |
tree | 8be20616898158c051bba68c9980346e57c84811 /usr.sbin/edquota | |
parent | 2d52ee0dde490079425bf1980fcd8e8d600c2073 (diff) |
ufs -> ffs
Diffstat (limited to 'usr.sbin/edquota')
-rw-r--r-- | usr.sbin/edquota/edquota.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index 6be14669a4c..67721922c71 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.1 1995/10/18 08:47:33 deraadt Exp $"; +static char *rcsid = "$Id: edquota.c,v 1.2 1995/10/24 14:32:18 deraadt Exp $"; #endif /* not lint */ /* @@ -221,7 +221,7 @@ getprivs(id, quotatype) quphead = (struct quotause *)0; qcmd = QCMD(Q_GETQUOTA, quotatype); while (fs = getfsent()) { - if (strcmp(fs->fs_vfstype, "ufs")) + if (strcmp(fs->fs_vfstype, "ffs")) continue; if (!hasquota(fs, quotatype, &qfpathname)) continue; |