diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2004-03-01 11:50:50 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2004-03-01 11:50:50 +0000 |
commit | b8859fefcc3f455e666233dc95f4097405240f88 (patch) | |
tree | 0d3b1ad00829f25361e3ea1ebcd9445a0987cb28 /Src | |
parent | dc3fa4b40761a40b506364dc89842efc7892bc70 (diff) | |
download | zsh-b8859fefcc3f455e666233dc95f4097405240f88.tar.gz zsh-b8859fefcc3f455e666233dc95f4097405240f88.tar.xz zsh-b8859fefcc3f455e666233dc95f4097405240f88.zip |
19505: compilation with NTTYDISC defined was broken.
Diffstat (limited to 'Src')
-rw-r--r-- | Src/init.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Src/init.c b/Src/init.c index 15e7f9c60..9591671da 100644 --- a/Src/init.c +++ b/Src/init.c @@ -481,6 +481,9 @@ mod_export void init_shout(void) { static char shoutbuf[BUFSIZ]; +#if defined(JOB_CONTROL) && defined(TIOCSETD) && defined(NTTYDISC) + int ldisc; +#endif if (SHTTY == -1) { @@ -490,8 +493,7 @@ init_shout(void) } #if defined(JOB_CONTROL) && defined(TIOCSETD) && defined(NTTYDISC) - int ldisc = NTTYDISC; - + ldisc = NTTYDISC; ioctl(SHTTY, TIOCSETD, (char *)&ldisc); #endif |