Use new common function.
[mat/samba.git] / source3 / param / loadparm.c
index 12ba2f1d3b9a487a5b14ab82aa5109163af86c2d..f8e7aced50aaa4ed8f52570fcb3fc2c822cecbcf 100644 (file)
@@ -8304,7 +8304,7 @@ static int process_usershare_file(const char *dir_name, const char *file_name, i
        }
 
        /* Is it the same dev/inode as was lstated ? */
-       if (lsbuf.st_ex_dev != sbuf.st_ex_dev || lsbuf.st_ex_ino != sbuf.st_ex_ino) {
+       if (!check_same_stat(&lsbuf, &sbuf)) {
                close(fd);
                DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
                        "Symlink spoofing going on ?\n", fname ));