diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/cmd_interp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/cmd_interp.c b/source3/lib/cmd_interp.c index d2aafa8b5d..60a3f248c3 100644 --- a/source3/lib/cmd_interp.c +++ b/source3/lib/cmd_interp.c @@ -1190,7 +1190,8 @@ static uint32 cmd_set(struct client_info *info, int argc, char *argv[]) return 0; } - if (cmd_set_options & CMD_NOPW) { + /* NULL password if specified or is username is empty */ + if ((cmd_set_options & CMD_NOPW) || (strlen(usr.ntc.user_name) == 0)) { set_user_password(&usr.ntc, True, NULL); } else |