mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ITS#6702 prompts should be on stderr
This commit is contained in:
parent
acedf4f194
commit
c7e19f9b62
@ -103,8 +103,8 @@ lutil_getpass( const char *prompt )
|
||||
#else
|
||||
fi = stdin;
|
||||
#endif
|
||||
fprintf(stdout, "%s", prompt);
|
||||
fflush(stdout);
|
||||
fprintf(stderr, "%s", prompt);
|
||||
fflush(stderr);
|
||||
i = 0;
|
||||
while ( (c = getc(fi)) != EOF && c != '\n' && c != '\r' )
|
||||
if ( i < (sizeof(pbuf)-1) )
|
||||
@ -112,8 +112,8 @@ lutil_getpass( const char *prompt )
|
||||
#if defined(HAVE_TERMIOS_H) || defined(HAVE_SGTTY_H)
|
||||
/* tidy up */
|
||||
if (fi != stdin) {
|
||||
fprintf(stdout, "\n");
|
||||
fflush(stdout);
|
||||
fprintf(stderr, "\n");
|
||||
fflush(stderr);
|
||||
SETFLAGS( ttyb, flags );
|
||||
if (SETATTR(fileno(fi), &ttyb) < 0)
|
||||
perror("SETATTR");
|
||||
|
Loading…
Reference in New Issue
Block a user