diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-03-19 20:12:19 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-03-19 20:12:19 +0800 |
commit | da59afe798f9b438f07b834683bb62f79a35fe93 (patch) | |
tree | 5ff5f8461562dc2e24ed4de842e95a96b4c8a58c /sshpty.c | |
parent | 6270ed2f8a0b6ce13bb244766e4fd9e46ae5002b (diff) |
ignore I_PUSH if it isn't defined, for Android from Reimar Döffinger
Diffstat (limited to 'sshpty.c')
-rw-r--r-- | sshpty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -133,7 +133,7 @@ pty_allocate(int *ptyfd, int *ttyfd, char *namebuf, int namebuflen) close(*ptyfd); return 0; } -#ifndef HAVE_CYGWIN +#if !defined(HAVE_CYGWIN) && defined(I_PUSH) /* * Push the appropriate streams modules, as described in Solaris pts(7). * HP-UX pts(7) doesn't have ttcompat module. |