summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-04-28 09:02:21 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-04-28 09:02:21 +0000
commitc0903951a144b1f0502e77437ea166d7a26393ba (patch)
tree27293f22b9c7c915a673651b49595238d3b8f3fc /source
parent52c5806004022f153af7d022afdb3ec7cc0d2548 (diff)
downloadsamba-c0903951a144b1f0502e77437ea166d7a26393ba.tar.gz
samba-c0903951a144b1f0502e77437ea166d7a26393ba.tar.xz
samba-c0903951a144b1f0502e77437ea166d7a26393ba.zip
Merge compile warning fixes from 3.0
Diffstat (limited to 'source')
-rw-r--r--source/auth/auth_winbind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_winbind.c b/source/auth/auth_winbind.c
index df08b6440ac..840898415be 100644
--- a/source/auth/auth_winbind.c
+++ b/source/auth/auth_winbind.c
@@ -139,7 +139,7 @@ NTSTATUS auth_init_winbind(struct auth_context *auth_context, const char *param,
if (param && *param) {
/* we load the 'fallback' module - if winbind isn't here, call this
module */
- if (!load_auth_module(auth_context, param, &(*auth_method)->private_data)) {
+ if (!load_auth_module(auth_context, param, (auth_methods **)&(*auth_method)->private_data)) {
return NT_STATUS_UNSUCCESSFUL;
}