1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-07 17:18:11 +03:00

Merge compile warning fixes from 3.0

This commit is contained in:
Andrew Bartlett 0001-01-01 00:00:00 +00:00
parent 52c5806004
commit c0903951a1

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