diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-04-28 14:23:44 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-04-28 14:23:44 +0000 |
commit | c07d7de3895c13c175d61639171808acd824907b (patch) | |
tree | 70774368b4d5e5af07778c0e1507442532baba47 /source3 | |
parent | b5af387397f0e1e27d602182ec937216b12fd80c (diff) | |
download | samba-c07d7de3895c13c175d61639171808acd824907b.tar.gz samba-c07d7de3895c13c175d61639171808acd824907b.tar.bz2 samba-c07d7de3895c13c175d61639171808acd824907b.zip |
Add cast for compiler
(This used to be commit 456eb5d05a442ee380cfa756be54619b1d68fa48)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/auth/auth_winbind.c | 2 |
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; } |