r25554: Convert last instances of BOOL, True and False to the standard types.
[samba.git] / source4 / ntvfs / posix / pvfs_util.c
index 895fcd96851a03cbf4756fb3f07408f438823de2..fd9724f7e2bc10e10e7aeb3e3ad9483028ec65e5 100644 (file)
 #include "vfs_posix.h"
 
 /*
-  return True if a string contains one of the CIFS wildcard characters
+  return true if a string contains one of the CIFS wildcard characters
 */
-BOOL pvfs_has_wildcard(const char *str)
+bool pvfs_has_wildcard(const char *str)
 {
        if (strpbrk(str, "*?<>\"")) {
-               return True;
+               return true;
        }
-       return False;
+       return false;
 }
 
 /*