diff options
author | Sverker Eriksson <[email protected]> | 2016-07-05 15:34:48 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-07-05 15:49:45 +0200 |
commit | e77c49f0e80740531405a49494fe5431326a0ba7 (patch) | |
tree | ddb3ca40cdd75269ebf8187774adb766c7c6b83a /erts/etc/unix | |
parent | 0573efbc18fc20f8646cf3ff64d2affd06e03cb8 (diff) | |
download | otp-e77c49f0e80740531405a49494fe5431326a0ba7.tar.gz otp-e77c49f0e80740531405a49494fe5431326a0ba7.tar.bz2 otp-e77c49f0e80740531405a49494fe5431326a0ba7.zip |
run_erl: Beautify #ifdef jungle
Diffstat (limited to 'erts/etc/unix')
-rw-r--r-- | erts/etc/unix/run_erl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/etc/unix/run_erl.c b/erts/etc/unix/run_erl.c index 30210ac172..d7cfbe675e 100644 --- a/erts/etc/unix/run_erl.c +++ b/erts/etc/unix/run_erl.c @@ -912,12 +912,12 @@ static int open_pty_master(char **ptyslave, int *sfdp) slave device properly. */ #if defined(HAVE_WORKING_POSIX_OPENPT) || (defined(__sun) && defined(__SVR4)) # ifdef HAVE_WORKING_POSIX_OPENPT - if ((mfd = posix_openpt(O_RDWR)) >= 0) { + mfd = posix_openpt(O_RDWR); # elif defined(__sun) && defined(__SVR4) mfd = sf_open("/dev/ptmx", O_RDWR, 0); +# endif if (mfd >= 0) { -# endif if ((*ptyslave = ptsname(mfd)) != NULL && grantpt(mfd) == 0 && unlockpt(mfd) == 0) { |