diff options
author | Jeremy Allison <jra@samba.org> | 2005-12-03 06:58:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:42 -0500 |
commit | a168730dda8f6917bf89d82824060cdd815c7297 (patch) | |
tree | 5748e06fd42c9687322f22b7a4ac4655cee1612e /source3/nsswitch | |
parent | d1f91f7c723733113b4e9792042101c80dfc064c (diff) | |
download | samba-a168730dda8f6917bf89d82824060cdd815c7297.tar.gz samba-a168730dda8f6917bf89d82824060cdd815c7297.tar.bz2 samba-a168730dda8f6917bf89d82824060cdd815c7297.zip |
r12045: More warning fixes... Just a few more to go.
Jeremy.
(This used to be commit cd192ed79a531c6775cdbfb35f0eb2e0fa230ce9)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c index ac24b35229..29129e823a 100644 --- a/source3/nsswitch/winbindd_ads.c +++ b/source3/nsswitch/winbindd_ads.c @@ -621,7 +621,7 @@ static NTSTATUS lookup_usergroups(struct winbindd_domain *domain, goto done; } - rc = ads_search_retry_dn(ads, (void**)&msg, user_dn, attrs); + rc = ads_search_retry_dn(ads, (void**)(void *)&msg, user_dn, attrs); if (!ADS_ERR_OK(rc)) { status = ads_ntstatus(rc); DEBUG(1,("lookup_usergroups(sid=%s) ads_search tokenGroups: %s\n", |