Skip to content

Commit

Permalink
Merge pull request #64 from ktdreyer/openpty
Browse files Browse the repository at this point in the history
roken: don't ignore HAVE_OPENPTY on linux
  • Loading branch information
Love Hörnquist Åstrand committed Feb 17, 2014
2 parents a332248 + d0b70a4 commit f00a60e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/roken/rkpty.c
Expand Up @@ -99,7 +99,7 @@ open_pty(void)
printf("implement open_pty\n");
exit(77);
#endif
#if defined(HAVE_OPENPTY) || defined(__linux) || defined(__osf__) /* XXX */
#if defined(HAVE_OPENPTY) || defined(__osf__) /* XXX */
if(openpty(&master, &slave, line, 0, 0) == 0)
return;
#endif /* HAVE_OPENPTY .... */
Expand Down

0 comments on commit f00a60e

Please sign in to comment.