Fix typo in filesystem capabilities bits.
authorJames Peach <jpeach@apple.com>
Thu, 20 Dec 2007 16:31:27 +0000 (08:31 -0800)
committerJames Peach <jpeach@apple.com>
Thu, 20 Dec 2007 16:31:27 +0000 (08:31 -0800)
(This used to be commit 08fee0d28a20648d74c6b03d120eaf628f4de70c)

source3/smbd/statvfs.c

index 431489032c4d2675929958c26e1df6601b47daf1..0e9a2c2ebe0b316ad979a9a5a8317a06ce508694 100644 (file)
@@ -39,13 +39,11 @@ static int linux_statvfs(const char *path, vfs_statvfs_struct *statbuf)
                statbuf->FreeFileNodes = statvfs_buf.f_ffree;
                statbuf->FsIdentifier = statvfs_buf.f_fsid;
 
-#if defined(FILE_CASE_SENSITIVE_SEARCH) && defined(FILE_CASE_PRESERVING_NAMES)
                /* Good defaults for Linux filesystems are case sensitive
                 * and case preserving.
                 */
                statbuf->FsCapabilities =
-                   FILE_CASE_SENSITIVE_SEARCH | FILE_CASE_PRESERVING_NAMES;
-#endif
+                   FILE_CASE_SENSITIVE_SEARCH | FILE_CASE_PRESERVED_NAMES;
        }
        return result;
 }