(doit_passive): conditionalize stream pipe code

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5122 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1998-08-16 17:24:26 +00:00
parent dc0dfabdfe
commit c32f42c69c

View File

@@ -465,6 +465,7 @@ doit_passive (int sock, des_cblock *key, des_key_schedule schedule,
if (fd < 0 && errno != EINTR) if (fd < 0 && errno != EINTR)
syslog (LOG_ERR, "accept: %m"); syslog (LOG_ERR, "accept: %m");
#ifdef MAY_HAVE_X11_PIPES
} else if(sockets[i].flags == STREAM_PIPE) { } else if(sockets[i].flags == STREAM_PIPE) {
/* /*
* this code tries to handle the * this code tries to handle the
@@ -491,6 +492,7 @@ doit_passive (int sock, des_cblock *key, des_key_schedule schedule,
cookiesp = FALSE; cookiesp = FALSE;
} }
} }
#endif /* MAY_HAVE_X11_PIPES */
} else } else
abort (); abort ();
break; break;