diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-03-31 01:39:46 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-03-31 01:39:46 +0000 |
commit | 5efec4e1b3300bd8f1792d1aaf1e758032a8d4fc (patch) | |
tree | a2abc9ae8ec2a295bbc6caa026052f0b942cc581 /source3 | |
parent | 2a0b0873e3bd41ae961bffd3d6b59f8299ba2838 (diff) | |
download | samba-5efec4e1b3300bd8f1792d1aaf1e758032a8d4fc.tar.gz samba-5efec4e1b3300bd8f1792d1aaf1e758032a8d4fc.tar.bz2 samba-5efec4e1b3300bd8f1792d1aaf1e758032a8d4fc.zip |
the default for old style accounts should be workstation trust
account, not server trust account.
(This used to be commit f2d1e39a66155497880dc0b26200a85adfe7af68)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/smbpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/smbpass.c b/source3/passdb/smbpass.c index b481a501e6..0c5c290299 100644 --- a/source3/passdb/smbpass.c +++ b/source3/passdb/smbpass.c @@ -417,7 +417,7 @@ struct smb_passwd *getsmbpwent(FILE *fp) */ if(pw_buf.smb_name[strlen(pw_buf.smb_name) - 1] == '$') { pw_buf.acct_ctrl &= ~ACB_NORMAL; - pw_buf.acct_ctrl |= ACB_SVRTRUST; + pw_buf.acct_ctrl |= ACB_WSTRUST; } } |