summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-10-31 06:22:19 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-10-31 06:22:19 +0000
commit3b5e72bda3263c6bdf81dfface4fae4f06b71032 (patch)
tree2d34caa16415093581fb4408fc7e06e21ed25544 /source/lib
parent4eeb7bcd783d7cfb3ac232f1faa035773007401d (diff)
downloadsamba-3b5e72bda3263c6bdf81dfface4fae4f06b71032.tar.gz
samba-3b5e72bda3263c6bdf81dfface4fae4f06b71032.tar.xz
samba-3b5e72bda3263c6bdf81dfface4fae4f06b71032.zip
Small 'const' updates ahead of some AuthRewrite merging.
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util_str.c b/source/lib/util_str.c
index 3a77098e09c..e97885ae054 100644
--- a/source/lib/util_str.c
+++ b/source/lib/util_str.c
@@ -184,7 +184,7 @@ BOOL strcsequal(const char *s1,const char *s2)
/***************************************************************************
Do a case-insensitive, whitespace-ignoring string compare.
***************************************************************************/
-int strwicmp(char *psz1, char *psz2)
+int strwicmp(const char *psz1, const char *psz2)
{
/* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
/* appropriate value. */