diff options
author | Jeremy Allison <jra@samba.org> | 2004-03-11 22:59:58 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2004-03-11 22:59:58 +0000 |
commit | 39c731347045dc345862d527871ae5b9a4619e74 (patch) | |
tree | 1efcc9c3ea2080a20b4bc52bf0b08a69c161b847 /source3/lib/smbldap.c | |
parent | 77b180d401b1f431dd550a8498b83bdb24cd7325 (diff) | |
download | samba-39c731347045dc345862d527871ae5b9a4619e74.tar.gz samba-39c731347045dc345862d527871ae5b9a4619e74.tar.bz2 samba-39c731347045dc345862d527871ae5b9a4619e74.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 3b4fca7b7f410cb0f11322e22c8f26a662eff941)
Diffstat (limited to 'source3/lib/smbldap.c')
-rw-r--r-- | source3/lib/smbldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index 1c3829c1ef..c15ba51306 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -306,7 +306,7 @@ static BOOL fetch_ldap_pw(char **dn, char** pw) return False; } - if (convert_string(CH_UTF8, CH_UNIX,values[0], -1, value, max_len) == (size_t)-1) { + if (convert_string(CH_UTF8, CH_UNIX,values[0], -1, value, max_len, False) == (size_t)-1) { DEBUG(1, ("smbldap_get_single_attribute: string conversion of [%s] = [%s] failed!\n", attribute, values[0])); ldap_value_free(values); |