summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
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
commit6ab678d42b46eccee080de415985a8a1e3c29dc3 (patch)
tree166a84c3988da85c3554fad30e43e8ea72aa17c7 /source3/lib/util_str.c
parent6f0b8a38ec036a0027e9f938834e241b41db40c5 (diff)
downloadsamba-6ab678d42b46eccee080de415985a8a1e3c29dc3.tar.gz
samba-6ab678d42b46eccee080de415985a8a1e3c29dc3.tar.bz2
samba-6ab678d42b46eccee080de415985a8a1e3c29dc3.zip
Small 'const' updates ahead of some AuthRewrite merging.
(This used to be commit 3b5e72bda3263c6bdf81dfface4fae4f06b71032)
Diffstat (limited to 'source3/lib/util_str.c')
-rw-r--r--source3/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c
index 3a77098e09..e97885ae05 100644
--- a/source3/lib/util_str.c
+++ b/source3/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. */