Fixed const definitions for StrCaseXXX calls.
authorSamba Release Account <samba-bugs@samba.org>
Mon, 3 Feb 1997 19:41:59 +0000 (19:41 +0000)
committerSamba Release Account <samba-bugs@samba.org>
Mon, 3 Feb 1997 19:41:59 +0000 (19:41 +0000)
jra@cygnus.com
(This used to be commit cbb59639659476054571d4bd18b5df55b0e11a2e)

source3/include/proto.h
source3/lib/util.c

index 17fadc27e182a2ab46a36856c8b4a7434b0df249..cd1340dbd56b0beaf98c5df0667f4ae454036b5a 100644 (file)
@@ -835,8 +835,8 @@ time_t file_modtime(char *fname);
 BOOL directory_exist(char *dname,struct stat *st);
 uint32 file_size(char *file_name);
 char *attrib_string(int mode);
-int StrCaseCmp(char *s, char *t);
-int StrnCaseCmp(char *s, char *t, int n);
+int StrCaseCmp(const char *s, const char *t);
+int StrnCaseCmp(const char *s, const char *t, int n);
 BOOL strequal(char *s1,char *s2);
 BOOL strnequal(char *s1,char *s2,int n);
 BOOL strcsequal(char *s1,char *s2);
index dbf8a377bba82815fe69513eb74eec75401f7652..e1302857fb50364a2942153390c23ff4c7ca331a 100644 (file)
@@ -796,7 +796,7 @@ char *attrib_string(int mode)
 /*******************************************************************
   case insensitive string compararison
 ********************************************************************/
-int StrCaseCmp(char const *s, char const *t)
+int StrCaseCmp(const char *s, const char *t)
 {
   /* compare until we run out of string, either t or s, or find a difference */
   while (*s && *t && tolower(*s) == tolower(*t))
@@ -810,7 +810,7 @@ int StrCaseCmp(char const *s, char const *t)
 /*******************************************************************
   case insensitive string compararison, length limited
 ********************************************************************/
-int StrnCaseCmp(char const *s, char const *t, int n)
+int StrnCaseCmp(const char *s, const char *t, int n)
 {
   /* compare until we run out of string, either t or s, or chars */
   while (n-- && *s && *t && tolower(*s) == tolower(*t))