mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
fix handling of -y
This commit is contained in:
parent
812651c83b
commit
07a2ba9bec
1 changed files with 11 additions and 12 deletions
|
|
@ -168,7 +168,7 @@ main( int argc, char *argv[] )
|
|||
}
|
||||
|
||||
if( oldpwfile ) {
|
||||
rc = lutil_get_filed_password( prog, &oldpw );
|
||||
rc = lutil_get_filed_password( oldpwfile, &oldpw );
|
||||
if( rc ) return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
|
|
@ -189,7 +189,7 @@ main( int argc, char *argv[] )
|
|||
}
|
||||
|
||||
if( newpwfile ) {
|
||||
rc = lutil_get_filed_password( prog, &newpw );
|
||||
rc = lutil_get_filed_password( newpwfile, &newpw );
|
||||
if( rc ) return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
|
|
@ -209,23 +209,22 @@ main( int argc, char *argv[] )
|
|||
newpw.bv_len = strlen( newpw.bv_val );
|
||||
}
|
||||
|
||||
if( want_bindpw && passwd.bv_val == NULL ) {
|
||||
/* handle bind password */
|
||||
if ( pw_file ) {
|
||||
rc = lutil_get_filed_password( pw_file, &passwd );
|
||||
if( rc ) return EXIT_FAILURE;
|
||||
} else {
|
||||
passwd.bv_val = getpassphrase( "Enter LDAP Password: " );
|
||||
passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
|
||||
}
|
||||
if ( pw_file ) {
|
||||
rc = lutil_get_filed_password( pw_file, &passwd );
|
||||
if( rc ) return EXIT_FAILURE;
|
||||
|
||||
} else if ( want_bindpw ) {
|
||||
passwd.bv_val = getpassphrase( "Enter LDAP Password: " );
|
||||
passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
|
||||
}
|
||||
|
||||
ld = tool_conn_setup( 0, 0 );
|
||||
|
||||
tool_bind( ld );
|
||||
|
||||
if ( authzid || manageDSAit || noop )
|
||||
if ( authzid || manageDSAit || noop ) {
|
||||
tool_server_controls( ld, NULL, 0 );
|
||||
}
|
||||
|
||||
if( user != NULL || oldpw.bv_val != NULL || newpw.bv_val != NULL ) {
|
||||
/* build change password control */
|
||||
|
|
|
|||
Loading…
Reference in a new issue