summaryrefslogtreecommitdiff
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
commite627d756db8baa6d1a4deffc56e1873c4afd7248 (patch)
tree95ff9fe92a86072faa93bbcbf81f132e0d96547d
parentd031ba5c83d3243a7509692097c3a1a25aa34553 (diff)
downloadsamba-e627d756db8baa6d1a4deffc56e1873c4afd7248.tar.gz
samba-e627d756db8baa6d1a4deffc56e1873c4afd7248.tar.bz2
samba-e627d756db8baa6d1a4deffc56e1873c4afd7248.zip
Merge compile warning fixes from 3.0
(This used to be commit c0903951a144b1f0502e77437ea166d7a26393ba)
-rw-r--r--source3/auth/auth_winbind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c
index df08b6440a..840898415b 100644
--- a/source3/auth/auth_winbind.c
+++ b/source3/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;
}