mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
ITS#349: if user hits RETURN at "Change base to?", return to UD prompt.
This commit is contained in:
parent
5f6f7d06a6
commit
be51328c8b
1 changed files with 3 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ change_base( int type, char **base, char *s )
|
|||
/*
|
||||
* If s is NULL we need to prompt the user for an argument.
|
||||
*/
|
||||
while (s == NULL) {
|
||||
if (s == NULL) {
|
||||
if (verbose) {
|
||||
printf(" You need to specify how the base is to be changed. Valid choices are:\n");
|
||||
printf(" ? - list the choices immediately below this level\n");
|
||||
|
|
@ -367,6 +367,8 @@ change_base( int type, char **base, char *s )
|
|||
fetch_buffer(buf, sizeof(buf), stdin);
|
||||
if ((buf != NULL) && (buf[0] != '\0'))
|
||||
s = buf;
|
||||
else
|
||||
return;
|
||||
}
|
||||
|
||||
/* set the output string */
|
||||
|
|
|
|||
Loading…
Reference in a new issue