1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

Add cast for compiler

(This used to be commit 456eb5d05a)
This commit is contained in:
Andrew Bartlett 2003-04-28 14:23:44 +00:00
parent b5af387397
commit c07d7de389

View File

@ -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;
}