summaryrefslogtreecommitdiff
path: root/convertquota.c
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2001-04-11 10:12:36 +0000
committerjkar8572 <jkar8572>2001-04-11 10:12:36 +0000
commitbc47c58ac28bea3666ae128f9493f58195baee64 (patch)
tree73bf190dfc0daa5a7a6d8dadabc6b8b337396ade /convertquota.c
parent7ec003b82d056fa150924f15da0d0d0e353cf041 (diff)
Updated manpages.
Fixed small bug in repquota (User vs Group). Some XFS updates. Fixed problems with devfs and relative paths.
Diffstat (limited to 'convertquota.c')
-rw-r--r--convertquota.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/convertquota.c b/convertquota.c
index 73696d8..5422081 100644
--- a/convertquota.c
+++ b/convertquota.c
@@ -98,7 +98,7 @@ void convert_file(int type)
while ((mnt = getmntent(mntf))) {
if (!(dev = get_device_name(mnt->mnt_fsname)))
continue;
- if (!strcmp(dev, mntpoint) || !strcmp(mnt->mnt_dir, mntpoint))
+ if (devcmp(dev, mntpoint) || dircmp(mnt->mnt_dir, mntpoint))
break;
}
if (!mnt)