diff options
author | Simo Sorce <idra@samba.org> | 2006-12-18 20:04:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:35 -0500 |
commit | bb3cf31184198480b6c6bb63fda8f25228f6ca38 (patch) | |
tree | a352e149dc909b8b28be9d1fdcaa4da2e589a650 | |
parent | 9291e634c0ca97c642fba389e06f2ff31d70b3e0 (diff) | |
download | samba-bb3cf31184198480b6c6bb63fda8f25228f6ca38.tar.gz samba-bb3cf31184198480b6c6bb63fda8f25228f6ca38.tar.bz2 samba-bb3cf31184198480b6c6bb63fda8f25228f6ca38.zip |
r20242: these are not really const as we set them in the function
(This used to be commit 6a0260fb04f4f9066cbc9eea495141ab3f515b47)
-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 87eab6438c..430e786f2b 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, - const char **domain, const char **name, + char **domain, char **name, enum lsa_SidType *name_type) { struct winbindd_request request; |