diff options
author | Volker Lendecke <vl@sernet.de> | 2007-10-19 23:21:01 +0200 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-19 16:46:13 -0500 |
commit | 8f391ae47176f1acaef2e1f448b1c0168a069cf9 (patch) | |
tree | 83a2ff4e0969e9dbc33e2c8278e21c8cdbbffdec /source3/winbindd | |
parent | bffd56939233ed0168c687118411be631cd30244 (diff) | |
download | samba-8f391ae47176f1acaef2e1f448b1c0168a069cf9.tar.gz samba-8f391ae47176f1acaef2e1f448b1c0168a069cf9.tar.bz2 samba-8f391ae47176f1acaef2e1f448b1c0168a069cf9.zip |
Fix an incompatible pointer type warning
(This used to be commit 3c50caa9620899f982cd4a833356d965f47ec843)
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index 9800e32505..e89ad735b6 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -362,9 +362,9 @@ NTSTATUS idmap_init(void) if ( ! dom_list) { /* generate a list with our main domain */ - char ** dl; + const char ** dl; - dl = talloc_array(idmap_ctx, char *, 2); + dl = talloc_array(idmap_ctx, const char *, 2); if (dl == NULL) { ret = NT_STATUS_NO_MEMORY; goto done; |