From: Paul J. Reder Date: Wed, 1 May 2002 19:28:52 +0000 (+0000) Subject: Fix a case where an invalid pass phrase is entered and an X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4334540199354d276b821aa50955274eca97e4b;p=thirdparty%2Fapache%2Fhttpd.git Fix a case where an invalid pass phrase is entered and an error message is given, but the prompt is not shown again. This left the user in an ambiguous state. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@94896 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_pphrase.c b/ssl_engine_pphrase.c index e74f8e4d477..6103d4db39e 100644 --- a/ssl_engine_pphrase.c +++ b/ssl_engine_pphrase.c @@ -732,9 +732,9 @@ int ssl_pphrase_Handle_CB(char *buf, int bufsize, int verify, void *srv) * (see crypto/pem/pem_lib.c:def_callback() for details) */ prompt = "Enter pass phrase:"; - apr_file_puts(prompt, writetty); for (;;) { + apr_file_puts(prompt, writetty); if (sc->server->pphrase_dialog_type == SSL_PPTYPE_PIPE) { i = pipe_get_passwd_cb(buf, bufsize, "", FALSE); }