diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-11-05 09:59:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:45:47 -0500 |
commit | f7d8ba62795cbdf77c41f4c9a31906b19728bf23 (patch) | |
tree | 07438ebc8a5db3ae396bc8161a872db2a00e7536 | |
parent | 6b6a739eca1e16c0c101289b1984a639fce10223 (diff) | |
download | samba-f7d8ba62795cbdf77c41f4c9a31906b19728bf23.tar.gz samba-f7d8ba62795cbdf77c41f4c9a31906b19728bf23.tar.bz2 samba-f7d8ba62795cbdf77c41f4c9a31906b19728bf23.zip |
r11518: Fix a warning
(This used to be commit 4a32df49e66b49b20b78bf165869b7592bb626fd)
-rw-r--r-- | source4/lib/samba3/group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/samba3/group.c b/source4/lib/samba3/group.c index 78a04b3ff8..cf76bddffe 100644 --- a/source4/lib/samba3/group.c +++ b/source4/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); |