From 0cf44bb3476279e1db878b0793aa04b6bcc44a91 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 17 Jul 2001 08:34:12 +0000 Subject: move the global_machine_password_needs_changing where we need it. (This used to be commit 8a2f6fbacd275acc7b356169f4022df4860a813e) --- source3/passdb/smbpassfile.c | 2 -- source3/smbd/password.c | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/passdb/smbpassfile.c b/source3/passdb/smbpassfile.c index f995d8fd4b..3f3e2332a0 100644 --- a/source3/passdb/smbpassfile.c +++ b/source3/passdb/smbpassfile.c @@ -30,8 +30,6 @@ extern int DEBUGLEVEL; extern pstring global_myname; -BOOL global_machine_password_needs_changing = False; - static int mach_passwd_lock_depth; static FILE *mach_passwd_fp; diff --git a/source3/smbd/password.c b/source3/smbd/password.c index e905d9207f..fb9c39bde4 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -25,6 +25,8 @@ extern int DEBUGLEVEL; extern int Protocol; extern struct in_addr ipzero; +BOOL global_machine_password_needs_changing = False; + /* users from session setup */ static pstring session_users=""; -- cgit