diff options
author | Simo Sorce <idra@samba.org> | 2006-12-19 14:01:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:36 -0500 |
commit | 03b14454501633feae1f713f23e67682aef31c18 (patch) | |
tree | 3e14215806d1202b78e616b1eb80c785f2271277 /source3 | |
parent | 511593102455cb9afb7bbfb7ca2d969af3a95766 (diff) | |
download | samba-03b14454501633feae1f713f23e67682aef31c18.tar.gz samba-03b14454501633feae1f713f23e67682aef31c18.tar.bz2 samba-03b14454501633feae1f713f23e67682aef31c18.zip |
r20252: Revert back to const, but I have a fleble feeling we should go the ther way.
(This used to be commit 2048d491507cef1ac87da4fd2fedc458aae5a97d)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/wb_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wb_client.c b/source3/nsswitch/wb_client.c index 430e786f2b..87eab6438c 100644 --- a/source3/nsswitch/wb_client.c +++ b/source3/nsswitch/wb_client.c @@ -65,7 +65,7 @@ BOOL winbind_lookup_name(const char *dom_name, const char *name, DOM_SID *sid, /* Call winbindd to convert sid to name */ BOOL winbind_lookup_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid, - char **domain, char **name, + const char **domain, const char **name, enum lsa_SidType *name_type) { struct winbindd_request request; |