[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Thu Sep 20 04:44:29 UTC 2018
The branch OpenSSL_1_0_2-stable has been updated
via 79951b1d4e219f60e474a589f21fc3b38023e8a8 (commit)
from 5a6fbf616e1da3ac8c8bc6a30dbcd9844f6726c7 (commit)
- Log -----------------------------------------------------------------
commit 79951b1d4e219f60e474a589f21fc3b38023e8a8
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Sep 19 21:33:45 2018 +0200
crypto/ui/ui_openssl.c: make sure to recognise ENXIO and EIO too
These both indicate that the file descriptor we're trying to use as a
terminal isn't, in fact, a terminal.
Fixes #7271
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/7272)
(cherry picked from commit 276bf8620ce35a613c856f2b70348f65ffe94067)
(cherry picked from commit ad1730359220cef5903d16c7f58b602fc3713414)
-----------------------------------------------------------------------
Summary of changes:
crypto/ui/ui_openssl.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c
index 1ad0cfc..4b4eb81 100644
--- a/crypto/ui/ui_openssl.c
+++ b/crypto/ui/ui_openssl.c
@@ -509,6 +509,24 @@ static int open_console(UI *ui)
is_a_tty = 0;
else
# endif
+# ifdef ENXIO
+ /*
+ * Solaris can return ENXIO.
+ * This should be ok
+ */
+ if (errno == ENXIO)
+ is_a_tty = 0;
+ else
+# endif
+# ifdef EIO
+ /*
+ * Linux can return EIO.
+ * This should be ok
+ */
+ if (errno == EIO)
+ is_a_tty = 0;
+ else
+# endif
# ifdef ENODEV
/*
* MacOS X returns ENODEV (Operation not supported by device),
More information about the openssl-commits
mailing list