]> git.sur5r.net Git - openldap/commitdiff
Fix ber_scanf args
authorHoward Chu <hyc@openldap.org>
Sun, 16 Feb 2003 09:30:45 +0000 (09:30 +0000)
committerHoward Chu <hyc@openldap.org>
Sun, 16 Feb 2003 09:30:45 +0000 (09:30 +0000)
libraries/libldap/passwd.c

index d96fdb6350350fc3ef4fe222e77f8b37df87beb3..c4ab24abd5896bf0337c7f7218e08d7dca83faa2 100644 (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 ) {