diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-20 23:05:23 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-20 23:05:23 +0000 |
commit | b19296172a75449a27eb9f674c74c462b146e717 (patch) | |
tree | 9670ed16b8efdf6879614df52c48051886b90ac9 | |
parent | 71b63db1bf08b5d0b88d5d83dca8f2c6767c4123 (diff) | |
download | samba-b19296172a75449a27eb9f674c74c462b146e717.tar.gz samba-b19296172a75449a27eb9f674c74c462b146e717.tar.xz samba-b19296172a75449a27eb9f674c74c462b146e717.zip |
Fix the negation of the extra parinoia check on machine password changes.
I *love* automated testing - this one got picked up by the build farm.
Andew Bartlett
-rw-r--r-- | source/rpc_server/srv_netlog_nt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_server/srv_netlog_nt.c b/source/rpc_server/srv_netlog_nt.c index 077dbb0e2bf..75a64b3039b 100644 --- a/source/rpc_server/srv_netlog_nt.c +++ b/source/rpc_server/srv_netlog_nt.c @@ -410,7 +410,7 @@ NTSTATUS _net_srv_pwset(pipes_struct *p, NET_Q_SRV_PWSET *q_u, NET_R_SRV_PWSET * return NT_STATUS_NO_SUCH_USER; } - if (!(pdb_get_acct_ctrl(sampass) & ACB_DISABLED)) { + if (pdb_get_acct_ctrl(sampass) & ACB_DISABLED) { pdb_free_sam(&sampass); return NT_STATUS_ACCOUNT_DISABLED; } |