summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2005-03-22 15:45:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:11 -0500
commit7c198517dab63158cd4035e879a6b75db0b54b14 (patch)
treee877321ef4d640dd519093f2c60a0a6d80012fab /source3/lib/util_str.c
parent0d579953042b5c361ead51f57957accb3706e3f0 (diff)
downloadsamba-7c198517dab63158cd4035e879a6b75db0b54b14.tar.gz
samba-7c198517dab63158cd4035e879a6b75db0b54b14.tar.bz2
samba-7c198517dab63158cd4035e879a6b75db0b54b14.zip
r5954: Fix some compiler warnings and add missing exclude-block in "net rpc
share migrate" (found by Lars Mueller <lmuelle@suse.de>). Guenther (This used to be commit 45a2a7bedb877745cd9677fe3124d5a2ad2c8853)
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 03e9306805..6ec43a963b 100644
--- a/source3/lib/util_str.c
+++ b/source3/lib/util_str.c
@@ -826,7 +826,7 @@ void hex_encode(const unsigned char *buff_in, size_t len, char **out_hex_buffer)
Check if a string is part of a list.
**/
-BOOL in_list(char *s,char *list,BOOL casesensitive)
+BOOL in_list(const char *s, const char *list, BOOL casesensitive)
{
pstring tok;
const char *p=list;