Create the socket pair in AF_UNIX domain because that's

the common usage.
This commit is contained in:
wtc%netscape.com 1999-09-07 22:30:51 +00:00
Родитель 20a52a4fa4
Коммит 1061cba3a0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -642,7 +642,7 @@ _pl_SetupNativeNotifier(PLEventQueue* self)
int flags;
#if defined(VMS_EVENTS_USE_SOCKETS)
err = socketpair(AF_INET,SOCK_STREAM,0,self->eventPipe);
err = socketpair(AF_UNIX,SOCK_STREAM,0,self->eventPipe);
#else
err = pipe(self->eventPipe);
#endif