From 24a398b5b4b3693129aa8c060912a82fd0383f9f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 12 Dec 2009 16:58:31 +0100 Subject: s3: Fix a very embarrassing build failure --- source3/smbd/quotas.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/quotas.c b/source3/smbd/quotas.c index 8c443b6f60..1ad2b937b1 100644 --- a/source3/smbd/quotas.c +++ b/source3/smbd/quotas.c @@ -328,7 +328,7 @@ bool disk_quotas(const char *path, uint64_t *bsize, uint64_t *dfree, uint64_t *d } while ((mnt = getmntent(fd)) != NULL) { - if (sys_stat(mnt->mnt_dir, &sbuf, false) { + if (sys_stat(mnt->mnt_dir, &sbuf, false) == -1) { continue; } if (sbuf.st_ex_dev == devno) { @@ -599,7 +599,7 @@ bool disk_quotas(const char *path, euser_id = geteuid(); - if (sys_stat(path, &sbuf, false) { + if (sys_stat(path, &sbuf, false) == -1) { return false; } -- cgit