diff options
author | Herb Lewis <herb@samba.org> | 2001-04-24 18:53:15 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2001-04-24 18:53:15 +0000 |
commit | 55d0bdbf4a656fe457d180940ad0e700375ffc15 (patch) | |
tree | 55050447518a2c449b492d4c2d152761381932e3 /source3 | |
parent | 38227191ed2228ac6a07f826a68ace253cbd11dc (diff) | |
download | samba-55d0bdbf4a656fe457d180940ad0e700375ffc15.tar.gz samba-55d0bdbf4a656fe457d180940ad0e700375ffc15.tar.bz2 samba-55d0bdbf4a656fe457d180940ad0e700375ffc15.zip |
fix typo
(This used to be commit ed2dfae0e503367671c54ad8f1f49ac3af0b1c6a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbpasswd.c b/source3/utils/smbpasswd.c index 411d89f3f1..8ddd07a4c5 100644 --- a/source3/utils/smbpasswd.c +++ b/source3/utils/smbpasswd.c @@ -323,7 +323,7 @@ static int process_root(int argc, char *argv[]) * Ensure add/delete user and either remote machine or join domain are * not both set. */ - if(((local__flags & (LOCAL_ADD_USER|LOCAL_DELETE_USER)) == (LOCAL_ADD_USER|LOCAL_DELETE_USER)) || + if(((local_flags & (LOCAL_ADD_USER|LOCAL_DELETE_USER)) == (LOCAL_ADD_USER|LOCAL_DELETE_USER)) || ((local_flags & (LOCAL_ADD_USER|LOCAL_DELETE_USER)) && ((remote_machine != NULL) || joining_domain))) { usage(); |