summaryrefslogtreecommitdiffstats
path: root/source/lib/samba3
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-11-05 09:59:00 +0000
committerVolker Lendecke <vlendec@samba.org>2005-11-05 09:59:00 +0000
commit36d3c93dfd33ce20a216af7de97b64682ed3fbe5 (patch)
tree11d9a3c47e2ad88cbec47937d132711c0a7c996b /source/lib/samba3
parent29f5febdb163d39c84b488ff0d6499bec74c27ad (diff)
downloadsamba-36d3c93dfd33ce20a216af7de97b64682ed3fbe5.tar.gz
samba-36d3c93dfd33ce20a216af7de97b64682ed3fbe5.tar.xz
samba-36d3c93dfd33ce20a216af7de97b64682ed3fbe5.zip
r11518: Fix a warning
Diffstat (limited to 'source/lib/samba3')
-rw-r--r--source/lib/samba3/group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/samba3/group.c b/source/lib/samba3/group.c
index 78a04b3ff8f..cf76bddffe3 100644
--- a/source/lib/samba3/group.c
+++ b/source/lib/samba3/group.c
@@ -107,7 +107,7 @@ NTSTATUS samba3_read_grouptdb(const char *file, TALLOC_CTX *ctx, struct samba3_g
} else if (strncmp(kbuf.dptr, MEMBEROF_PREFIX, strlen(MEMBEROF_PREFIX)) == 0)
{
struct samba3_alias alias;
- char **member_strlist;
+ const char **member_strlist;
int i;
dbuf = tdb_fetch(tdb, kbuf);