Cygwin: Include local ntsecapi.h

Our local ntsecapi.h wrapper corrects a bug in the definition of
SystemFunction036 which otherwise leads to crashes on 32 bit when
using RtlGenRandom.  The fhandler_socket_local.cc file accidentally
included the incorrect w32api version of that file, rather than the
local wrapper.  Fix it.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
Takashi Yano 2018-07-04 12:42:39 +02:00 committed by Corinna Vinschen
parent d4f4e7ae1b
commit 0ce27ecd08
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#undef u_long
#define u_long __ms_u_long
#endif
#include <w32api/ntsecapi.h>
#include "ntsecapi.h"
#include <w32api/ws2tcpip.h>
#include <w32api/mswsock.h>
#include <unistd.h>