]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
2000-05-01 H.J. Lu <hjl@lucon.org>
authorhjl <hjl>
Mon, 1 May 2000 23:04:10 +0000 (23:04 +0000)
committerhjl <hjl>
Mon, 1 May 2000 23:04:10 +0000 (23:04 +0000)
* utils/rquotad/rquota_server.c (getquotainfo): Call stat ()
to check for the mounting point.

ChangeLog
utils/rquotad/rquota_server.c

index d98d6e31df814c2029c17cfb33ce21653fe7abbd..c4994761f83c6cceb5925d9122c629839ef9f276 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-01  H.J. Lu <hjl@lucon.org>
+
+       * utils/rquotad/rquota_server.c (getquotainfo): Call stat ()
+       to check for the mounting point.
+
 2000-04-29  Chip Salzenberg  <chip@valinux.com>
            Neil Brown  <neilb@cse.unsw.edu.au>
 
index bef99c7d503622fd2a75d94edb167e1f3c95875f..1c5e0e6f56c474793a196213467338a87929d953 100644 (file)
@@ -71,9 +71,9 @@ getquota_rslt *getquotainfo(int flags, caddr_t *argp, struct svc_req *rqstp)
    struct mntent *mnt;
    char *pathname, *qfpathname;
    int fd, err, id, type;
-   struct stat st;
+   struct stat stm, stn;
    struct statfs stf;
-   
+
    /*
     * First check authentication.
     */
@@ -107,15 +107,17 @@ getquota_rslt *getquotainfo(int flags, caddr_t *argp, struct svc_req *rqstp)
 
    fp = setmntent(MNTTAB, "r");
    while ((mnt = getmntent(fp)) != (struct mntent *)0) {
-      if (strcasecmp (mnt->mnt_dir, pathname))
-         continue;
+      if (stat(mnt->mnt_dir, &stm) == -1
+         || stat(pathname, &stn) == -1)
+         break;
+      else if (stm.st_dev != stn.st_dev)
+         continue;
 
       if (mnt->mnt_fsname [0] != '/'
          || strcasecmp (mnt->mnt_type, MNTTYPE_NFS) == 0
          || strcasecmp (mnt->mnt_type, MNTTYPE_AUTOFS) == 0
          || strcasecmp (mnt->mnt_type, MNTTYPE_SWAP) == 0
-         || strcasecmp (mnt->mnt_type, MNTTYPE_IGNORE) == 0
-         || stat(pathname, &st) == -1)
+         || strcasecmp (mnt->mnt_type, MNTTYPE_IGNORE) == 0)
          break;
 
       if (statfs(pathname, &stf) == -1) {