From: Howard Chu Date: Sun, 16 Feb 2003 09:30:45 +0000 (+0000) Subject: Fix ber_scanf args X-Git-Tag: NO_SLAP_OP_BLOCKS~348 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7fffc027b34fd76b78fe857263e9d8ff61aa5119;p=openldap Fix ber_scanf args --- diff --git a/libraries/libldap/passwd.c b/libraries/libldap/passwd.c index d96fdb6350..c4ab24abd5 100644 --- a/libraries/libldap/passwd.c +++ b/libraries/libldap/passwd.c @@ -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 ) {