diff options
Diffstat (limited to 'crypto/ui/ui_openssl.c')
| -rw-r--r-- | crypto/ui/ui_openssl.c | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/crypto/ui/ui_openssl.c b/crypto/ui/ui_openssl.c index 1ad0cfc5b873..4b4eb81a5e66 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), | 
