aboutsummaryrefslogtreecommitdiff
path: root/crypto/des
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-12-22 17:47:28 -0500
committerRich Salz <rsalz@openssl.org>2014-12-22 17:47:28 -0500
commit5ad4fdce41bb1ce7762b70fb50f732f70e3772cf (patch)
tree4f7aabf39c055333e29ce52794f0568d4ccb259b /crypto/des
parent67472bd82bed9d5e481b0d75926aab93618902be (diff)
downloadopenssl-5ad4fdce41bb1ce7762b70fb50f732f70e3772cf.zip
openssl-5ad4fdce41bb1ce7762b70fb50f732f70e3772cf.tar.gz
openssl-5ad4fdce41bb1ce7762b70fb50f732f70e3772cf.tar.bz2
RT3548: Remove unsupported platforms.
This commit removes MPE/iX Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/des')
-rw-r--r--crypto/des/read_pwd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto/des/read_pwd.c b/crypto/des/read_pwd.c
index ffc458a..9ad8f51 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;