From b4db079ac712af317d7c3cc048c86c92e88e72e9 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sun, 16 Feb 2003 08:37:19 +0000 Subject: [PATCH] Fix ber_printf arguments --- libraries/libldap/passwd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/libldap/passwd.c b/libraries/libldap/passwd.c index e8ef6fbf27..d96fdb6350 100644 --- a/libraries/libldap/passwd.c +++ b/libraries/libldap/passwd.c @@ -90,17 +90,17 @@ ldap_passwd( LDAP *ld, ber_printf( ber, "{" /*}*/ ); if( user != NULL ) { - ber_printf( ber, "ts", + ber_printf( ber, "tO", LDAP_TAG_EXOP_MODIFY_PASSWD_ID, user ); } if( oldpw != NULL ) { - ber_printf( ber, "ts", + ber_printf( ber, "tO", LDAP_TAG_EXOP_MODIFY_PASSWD_OLD, oldpw ); } if( newpw != NULL ) { - ber_printf( ber, "ts", + ber_printf( ber, "tO", LDAP_TAG_EXOP_MODIFY_PASSWD_NEW, newpw ); } -- 2.39.5