1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

panic action is defined as GLOBAL_VAR(szPanicAction) not GLOBAL_VAR(panic_action)

Signed-off-by: Stefan Metzmacher <metze@samba.org>

Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Tue Sep 18 06:12:00 CEST 2012 on sn-devel-104
This commit is contained in:
Matthieu Patou 2012-09-17 16:51:02 -07:00 committed by Stefan Metzmacher
parent 5695691005
commit 2a7484eb72
2 changed files with 1 additions and 2 deletions

View File

@ -2295,7 +2295,7 @@ static bool lpcfg_update(struct loadparm_context *lp_ctx)
return true; return true;
} }
panic_action = lp_ctx->globals->panic_action; panic_action = lp_ctx->globals->szPanicAction;
reload_charcnv(lp_ctx); reload_charcnv(lp_ctx);

View File

@ -131,7 +131,6 @@ static bool defaults_saved = false;
char *tls_cafile; \ char *tls_cafile; \
char *tls_crlfile; \ char *tls_crlfile; \
char *tls_dhpfile; \ char *tls_dhpfile; \
char *panic_action; \
int bPreferredMaster; int bPreferredMaster;
#include "param/param_global.h" #include "param/param_global.h"