summaryrefslogtreecommitdiff
path: root/source4/libcli/auth
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-06-27 17:55:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:09:35 -0500
commit0646a91bc9e004340026f2dbe082e057416eb1e6 (patch)
treef6ccd147c123595083ff493f01970ab6c1b3cb92 /source4/libcli/auth
parentca044dcd3a8eb7bfa8da05a88bf4346ccd135221 (diff)
downloadsamba-0646a91bc9e004340026f2dbe082e057416eb1e6.tar.gz
samba-0646a91bc9e004340026f2dbe082e057416eb1e6.tar.bz2
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.c6
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);