Handle CTRL-C as non-redoable abort signal
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Mon, 17 Jun 2019 14:57:25 +0000 (16:57 +0200)
committerBernd Edlinger <bernd.edlinger@hotmail.de>
Fri, 21 Jun 2019 10:20:10 +0000 (12:20 +0200)
commitf8922b5107d098c78f846c8c999f96111345de8d
tree4d8dff36e1ff48b77711455b5a7efabf91d9b3f3
parent32ee452496f8cf4558d645f9db908b09df919f04
Handle CTRL-C as non-redoable abort signal

This is a bit annoying, if for instance "openssl genrsa -aes128"
tries to read a 4+ character size password, but CTRL-C does no longer
work after a RETURN key, since the flag UI_FLAG_REDOABLE is set by
UI_set_result_ex, together with the error "You must type in 4 to 1023 characters".
Thus remove the REDOABLE flag to allow CTRL-C to work.

[extended tests]

Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9170)
crypto/ui/ui_lib.c