summaryrefslogtreecommitdiffstats
path: root/source/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
commit45a2a7bedb877745cd9677fe3124d5a2ad2c8853 (patch)
tree103b872ceb55cf17d3c0ae4675bac1b1f09c04e5 /source/lib/util_str.c
parent7dfafa712deb115e425c7367296400c54827a217 (diff)
downloadsamba-45a2a7bedb877745cd9677fe3124d5a2ad2c8853.tar.gz
samba-45a2a7bedb877745cd9677fe3124d5a2ad2c8853.tar.xz
samba-45a2a7bedb877745cd9677fe3124d5a2ad2c8853.zip
r5954: Fix some compiler warnings and add missing exclude-block in "net rpc
share migrate" (found by Lars Mueller <lmuelle@suse.de>). Guenther
Diffstat (limited to 'source/lib/util_str.c')
-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 03e93068057..6ec43a963b3 100644
--- a/source/lib/util_str.c
+++ b/source/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;