diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-02-03 19:41:59 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-02-03 19:41:59 +0000 |
commit | ab1b1855bdfe44c07ab32b469d97dd4c5f872315 (patch) | |
tree | 1d70b78592da73656e6934c2e893342f55b9417f /source3/include | |
parent | 30ae26ba426eefef3928e699c46f01eb56f49fa8 (diff) | |
download | samba-ab1b1855bdfe44c07ab32b469d97dd4c5f872315.tar.gz samba-ab1b1855bdfe44c07ab32b469d97dd4c5f872315.tar.bz2 samba-ab1b1855bdfe44c07ab32b469d97dd4c5f872315.zip |
Fixed const definitions for StrCaseXXX calls.
jra@cygnus.com
(This used to be commit cbb59639659476054571d4bd18b5df55b0e11a2e)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 17fadc27e1..cd1340dbd5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -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); |