Fix ber_scanf args

This commit is contained in:
Howard Chu 2003-02-16 09:30:45 +00:00
parent 532eea87c9
commit 7fffc027b3

View File

@ -49,7 +49,7 @@ int ldap_parse_passwd(
}
/* we should check the tag */
tag = ber_scanf( ber, "{o}", newpasswd );
tag = ber_scanf( ber, "{O}", newpasswd );
ber_free( ber, 1 );
if( tag == LBER_ERROR ) {