diff options
author | Rich Salz <rsalz@openssl.org> | 2014-12-22 23:47:28 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2014-12-22 23:47:28 +0100 |
commit | 5ad4fdce41bb1ce7762b70fb50f732f70e3772cf (patch) | |
tree | 4f7aabf39c055333e29ce52794f0568d4ccb259b /crypto | |
parent | Improves certificates HOWTO (diff) | |
download | openssl-5ad4fdce41bb1ce7762b70fb50f732f70e3772cf.tar.xz openssl-5ad4fdce41bb1ce7762b70fb50f732f70e3772cf.zip |
RT3548: Remove unsupported platforms.
This commit removes MPE/iX
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bio/bss_conn.c | 2 | ||||
-rw-r--r-- | crypto/des/read_pwd.c | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index 91e47e92eb..d2c9695b70 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -236,7 +236,7 @@ static int conn_state(BIO *b, BIO_CONNECT *c) } c->state=BIO_CONN_S_CONNECT; -#if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE) +#if defined(SO_KEEPALIVE) i=1; i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i)); if (i < 0) diff --git a/crypto/des/read_pwd.c b/crypto/des/read_pwd.c index ffc458a9c6..9ad8f51f2d 100644 --- a/crypto/des/read_pwd.c +++ b/crypto/des/read_pwd.c @@ -289,9 +289,7 @@ int des_read_pw(char *buf, char *buff, int size, const char *prompt, #elif defined(OPENSSL_SYS_VXWORKS) tty=stdin; #else -#ifndef OPENSSL_SYS_MPE if ((tty=fopen("/dev/tty","r")) == NULL) -#endif tty=stdin; #endif @@ -332,12 +330,8 @@ int des_read_pw(char *buf, char *buff, int size, const char *prompt, #if defined(TTY_set) && !defined(OPENSSL_SYS_VMS) if (is_a_tty && (TTY_set(fileno(tty),&tty_new) == -1)) -#ifdef OPENSSL_SYS_MPE - ; /* MPE lies -- echo really has been disabled */ -#else return(-1); #endif -#endif #ifdef OPENSSL_SYS_VMS tty_new[0] = tty_orig[0]; tty_new[1] = tty_orig[1] | TT$M_NOECHO; |