=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/quota/quota.c,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/quota/quota.c 1996/04/21 23:43:38 1.3 --- src/usr.bin/quota/quota.c 1996/04/25 11:04:06 1.4 *************** *** 42,48 **** #ifndef lint /*static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93";*/ ! static char rcsid[] = "$Id: quota.c,v 1.3 1996/04/21 23:43:38 deraadt Exp $"; #endif /* not lint */ /* --- 42,48 ---- #ifndef lint /*static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93";*/ ! static char rcsid[] = "$Id: quota.c,v 1.4 1996/04/25 11:04:06 deraadt Exp $"; #endif /* not lint */ /* *************** *** 452,460 **** if (strncmp(fst[i].f_fstypename, "nfs", MFSNAMELEN) == 0) { if (getnfsquota(&fst[i], NULL, qup, id, quotatype) == 0) continue; ! } else if ((strncmp(fst[i].f_fstypename, "ffs", ! MFSNAMELEN) == 0) || (strncmp(fst[i].f_fstypename, "ufs", ! MFSNAMELEN) == 0)) { /* * XXX * UFS filesystems must be in /etc/fstab, and must --- 452,460 ---- if (strncmp(fst[i].f_fstypename, "nfs", MFSNAMELEN) == 0) { if (getnfsquota(&fst[i], NULL, qup, id, quotatype) == 0) continue; ! } else if (!strncmp(fst[i].f_fstypename, "ffs", MFSNAMELEN) || ! !strncmp(fst[i].f_fstypename, "ufs", MFSNAMELEN) || ! !strncmp(fst[i].f_fstypename, "mfs", MFSNAMELEN)) { /* * XXX * UFS filesystems must be in /etc/fstab, and must