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
committerGünther Deschner <gd@samba.org>2005-03-22 15:45:38 +0000
commitfd517389b67b21209cefe66849a84edae08f6656 (patch)
tree103b872ceb55cf17d3c0ae4675bac1b1f09c04e5 /source/lib/util_str.c
parentca52e5bfb082b63b65b22662f9cadfbda57c95c2 (diff)
downloadsamba-fd517389b67b21209cefe66849a84edae08f6656.tar.gz
samba-fd517389b67b21209cefe66849a84edae08f6656.tar.xz
samba-fd517389b67b21209cefe66849a84edae08f6656.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;