diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-27 17:55:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:35 -0500 |
commit | 0646a91bc9e004340026f2dbe082e057416eb1e6 (patch) | |
tree | f6ccd147c123595083ff493f01970ab6c1b3cb92 /source4/libcli/auth | |
parent | ca044dcd3a8eb7bfa8da05a88bf4346ccd135221 (diff) | |
download | samba-0646a91bc9e004340026f2dbe082e057416eb1e6.tar.gz samba-0646a91bc9e004340026f2dbe082e057416eb1e6.tar.xz samba-0646a91bc9e004340026f2dbe082e057416eb1e6.zip |
r16569: - use push_string()
metze
(This used to be commit f099fcb6e3a38d6df22cb3a0c7c666333e41f11b)
Diffstat (limited to 'source4/libcli/auth')
-rw-r--r-- | source4/libcli/auth/smbencrypt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/libcli/auth/smbencrypt.c b/source4/libcli/auth/smbencrypt.c index 24fdeff33f..98f98a4986 100644 --- a/source4/libcli/auth/smbencrypt.c +++ b/source4/libcli/auth/smbencrypt.c @@ -91,10 +91,10 @@ BOOL E_deshash(const char *passwd, uint8_t p16[16]) BOOL ret = True; fstring dospwd; ZERO_STRUCT(dospwd); - + /* Password must be converted to DOS charset - null terminated, uppercase. */ - push_ascii(dospwd, passwd, sizeof(dospwd), STR_UPPER|STR_TERMINATE); - + push_string(dospwd, passwd, sizeof(dospwd), STR_ASCII|STR_UPPER|STR_TERMINATE); + /* Only the fisrt 14 chars are considered, password need not be null terminated. */ E_P16((const uint8_t *)dospwd, p16); |