summaryrefslogtreecommitdiff
path: root/source4/heimdal/lib/roken/rkpty.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/heimdal/lib/roken/rkpty.c')
-rw-r--r--source4/heimdal/lib/roken/rkpty.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/heimdal/lib/roken/rkpty.c b/source4/heimdal/lib/roken/rkpty.c
index 2776c1318b..6043e2b815 100644
--- a/source4/heimdal/lib/roken/rkpty.c
+++ b/source4/heimdal/lib/roken/rkpty.c
@@ -93,6 +93,10 @@ caught_signal(int signo)
static void
open_pty(void)
{
+#ifdef _AIX
+ printf("implement open_pty\n");
+ exit(77);
+#endif
#if defined(HAVE_OPENPTY) || defined(__linux) || defined(__osf__) /* XXX */
if(openpty(&master, &slave, line, 0, 0) == 0)
return;