1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Doesn't re-prompt for password when it is specified on the cmdline

(This used to be commit 6ebe87d318658f28ad9b9f8169fc4400856d5812)
This commit is contained in:
Jim McDonough 2003-07-11 14:33:03 +00:00
parent 5cd3b7c71c
commit e1725f0c04

View File

@ -420,7 +420,7 @@ static int process_root(int local_flags)
} else if (local_flags & LOCAL_INTERDOM_ACCOUNT) {
static fstring buf;
if (local_flags & LOCAL_ADD_USER) {
if (local_flags & LOCAL_ADD_USER & !new_passwd) {
/*
* Prompt for trusting domain's account password
*/
@ -465,7 +465,7 @@ static int process_root(int local_flags)
}
}
if(local_flags & LOCAL_SET_PASSWORD) {
if(local_flags & LOCAL_SET_PASSWORD & !new_passwd) {
new_passwd = prompt_for_new_password(stdin_passwd_get);
if(!new_passwd) {