diff options
author | Jeremy Allison <jra@samba.org> | 2004-03-11 22:48:24 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2004-03-11 22:48:24 +0000 |
commit | e3f5b542707e2328030b9d5eff0836a904eccde5 (patch) | |
tree | 13124522e17aa9464fa9e4b965f6b34112af0307 /source3/utils | |
parent | 3d18997afda94504e9db24115aaa56a58086a653 (diff) | |
download | samba-e3f5b542707e2328030b9d5eff0836a904eccde5.tar.gz samba-e3f5b542707e2328030b9d5eff0836a904eccde5.tar.bz2 samba-e3f5b542707e2328030b9d5eff0836a904eccde5.zip |
Restore the contract on all convert_stringXX() interfaces. Add a "allow_bad_conv"
boolean parameter that allows broken iconv conversions to work. Gets rid of the
nasty errno checks in mangle_hash2 and check_path_syntax and allows correct
return code checking.
Jeremy.
(This used to be commit 7b96765c23637613f079d37566d95d5edd511f05)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c index d2a1547f77..ec0f404176 100644 --- a/source3/utils/ntlm_auth.c +++ b/source3/utils/ntlm_auth.c @@ -1864,7 +1864,7 @@ static BOOL test_plaintext(enum ntlm_break break_which) if ((convert_string_allocate(NULL, CH_UNIX, CH_DOS, password, strlen(password)+1, - (void**)&lm_response.data)) == -1) { + (void**)&lm_response.data,True)) == -1) { DEBUG(0, ("push_ascii_allocate failed!\n")); exit(1); } |