diff options
-rw-r--r-- | source3/utils/smbpasswd.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index d6a0c3dba8..cb86669728 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -327,6 +327,12 @@ static int process_root(int argc, char *argv[]) usage(); } + /* Only load interfaces if we are doing network operations. */ + + if (joining_domain || remote_machine) { + load_interfaces(); + } + if(joining_domain) { if (argc != 0) usage(); @@ -506,11 +512,13 @@ static int process_nonroot(int argc, char *argv[]) * via a remote machine (even if that machine is * localhost). */ + + load_interfaces(); /* Delayed from main() */ + if (remote_machine == NULL) { remote_machine = "127.0.0.1"; } - if (remote_machine != NULL) { old_passwd = get_pass("Old SMB password:",stdin_passwd_get); } @@ -585,7 +593,6 @@ int main(int argc, char **argv) codepage_initialise(lp_client_code_page()); - load_interfaces(); secrets_init(); /* Check the effective uid - make sure we are not setuid */ |