diff options
author | Simo Sorce <idra@samba.org> | 2006-12-18 20:04:54 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2006-12-18 20:04:54 +0000 |
commit | b0833989fd6c0f17fbd77de581627944b816dc42 (patch) | |
tree | 2a40fba30a87c096881753084dc308f16342fc13 | |
parent | 645631a7b23552ab7b7b23cc2421ad3ef7719948 (diff) | |
download | samba-b0833989fd6c0f17fbd77de581627944b816dc42.tar.gz samba-b0833989fd6c0f17fbd77de581627944b816dc42.tar.xz samba-b0833989fd6c0f17fbd77de581627944b816dc42.zip |
r20242: these are not really const as we set them in the function
-rw-r--r-- | source/nsswitch/wb_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/nsswitch/wb_client.c b/source/nsswitch/wb_client.c index 87eab6438c8..430e786f2b0 100644 --- a/source/nsswitch/wb_client.c +++ b/source/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; |