From e25f83b8be600b3586666bc993646cf829912431 Mon Sep 17 00:00:00 2001 From: jtc Date: Thu, 1 Feb 1996 02:50:52 +0000 Subject: [PATCH] Fixed to use ffs instead of ufs; See PR #1984 --- libexec/rpc.rquotad/rquotad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/rpc.rquotad/rquotad.c b/libexec/rpc.rquotad/rquotad.c index cc7aaf9ebce8..45f176340063 100644 --- a/libexec/rpc.rquotad/rquotad.c +++ b/libexec/rpc.rquotad/rquotad.c @@ -211,7 +211,7 @@ initfs() setfsent(); while (fs = getfsent()) { - if (strcmp(fs->fs_vfstype, "ufs")) + if (strcmp(fs->fs_vfstype, "ffs")) continue; if (!hasquota(fs, &qfpathname)) continue;