diff options
author | Jim McDonough <jmcd@samba.org> | 2003-10-23 14:33:21 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-10-23 14:33:21 +0000 |
commit | 2a09fe6cb4e31e46dd92052bbc134629b4ae8fda (patch) | |
tree | 999b17e79142ea876292f92ba815f99edc4bfc4f /source3/utils/net.c | |
parent | 8e1dfc52b91f38ab53c8f717cb8b952c49a501bb (diff) | |
download | samba-2a09fe6cb4e31e46dd92052bbc134629b4ae8fda.tar.gz samba-2a09fe6cb4e31e46dd92052bbc134629b4ae8fda.tar.bz2 samba-2a09fe6cb4e31e46dd92052bbc134629b4ae8fda.zip |
Fix bug 451. Stop net -P from prompting for machine account password.
Based on work by Ken Cross (kcross@nssolutions.com).
(This used to be commit 32aa749bf1328e43af629ade30b3fdc11dd5e3ec)
Diffstat (limited to 'source3/utils/net.c')
-rw-r--r-- | source3/utils/net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/net.c b/source3/utils/net.c index 38c144caa8..75fa607cae 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -72,7 +72,7 @@ const char *opt_container = "cn=Users"; int opt_flags = -1; int opt_timeout = 0; const char *opt_target_workgroup = NULL; -static int opt_machine_pass = 0; +int opt_machine_pass = 0; BOOL opt_have_ip = False; struct in_addr opt_dest_ip; @@ -130,7 +130,7 @@ NTSTATUS connect_to_ipc(struct cli_state **c, struct in_addr *server_ip, { NTSTATUS nt_status; - if (!opt_password) { + if (!opt_password && !opt_machine_pass) { char *pass = getpass("Password:"); if (pass) { opt_password = strdup(pass); |