diff options
author | Jeremy Allison <jra@samba.org> | 2007-07-03 18:00:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:45 -0500 |
commit | 6afbd15b673fa9fd307459a61c396c3ea9370158 (patch) | |
tree | 007253a5176d0e9ee47be96b799a4b93fcb889d5 /source3/passdb | |
parent | 1d5646f9ff3b24b943ecff1c6f3744e4525cb221 (diff) | |
download | samba-6afbd15b673fa9fd307459a61c396c3ea9370158.tar.gz samba-6afbd15b673fa9fd307459a61c396c3ea9370158.tar.xz samba-6afbd15b673fa9fd307459a61c396c3ea9370158.zip |
r23688: Fix bug #4759 reported by Raul <ismell@ismell.org>.
"N" is not a valid format entry for ber_printf, should be "n"
Jeremy.
(This used to be commit f3bb102c24018f0a91f8b51de6fe646c091da6be)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/pdb_ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index dfa039a739f..d7fca4142d6 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -1611,7 +1611,7 @@ static NTSTATUS ldapsam_modify_entry(struct pdb_methods *my_methods, ber_printf (ber, "{"); ber_printf (ber, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_ID, utf8_dn); ber_printf (ber, "ts", LDAP_TAG_EXOP_MODIFY_PASSWD_NEW, utf8_password); - ber_printf (ber, "N}"); + ber_printf (ber, "n}"); if ((rc = ber_flatten (ber, &bv))<0) { DEBUG(0,("ldapsam_modify_entry: ber_flatten returns a value <0\n")); |