From 72e9a5d9e658514568586fb6e7ec4a8e479bf8ad Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 19 Sep 2006 01:25:52 +0000 Subject: r18665: Remove two type-punned warnings (This used to be commit 157b2c0c262dc9b9ae2a8a3133479e66e6c8db07) --- source3/auth/auth_script.c | 5 +++-- source3/auth/auth_winbind.c | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/source3/auth/auth_script.c b/source3/auth/auth_script.c index 70c906d942..3d007b7730 100644 --- a/source3/auth/auth_script.c +++ b/source3/auth/auth_script.c @@ -132,10 +132,11 @@ static NTSTATUS auth_init_script(struct auth_context *auth_context, const char * if (param && *param) { /* we load the 'fallback' module - if script isn't here, call this module */ - if (!load_auth_module(auth_context, param, (auth_methods **)&(*auth_method)->private_data)) { + auth_methods *priv; + if (!load_auth_module(auth_context, param, &priv)) { return NT_STATUS_UNSUCCESSFUL; } - + (*auth_method)->private_data = (void *)priv; } return NT_STATUS_OK; } diff --git a/source3/auth/auth_winbind.c b/source3/auth/auth_winbind.c index 835e0b4b25..fa56757950 100644 --- a/source3/auth/auth_winbind.c +++ b/source3/auth/auth_winbind.c @@ -158,10 +158,11 @@ static NTSTATUS auth_init_winbind(struct auth_context *auth_context, const char if (param && *param) { /* we load the 'fallback' module - if winbind isn't here, call this module */ - if (!load_auth_module(auth_context, param, (auth_methods **)&(*auth_method)->private_data)) { + auth_methods *priv; + if (!load_auth_module(auth_context, param, &priv)) { return NT_STATUS_UNSUCCESSFUL; } - + (*auth_method)->private_data = (void *)priv; } return NT_STATUS_OK; } -- cgit