Fixed issue preventing startup without --nofork under win32

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7265 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
frostycoolslug 2007-06-09 23:10:39 +00:00
parent 52acbb466b
commit 68531a8197

View File

@ -70,7 +70,7 @@ DWORD WindowsForkStart(InspIRCd * Instance)
return false; return false;
// Launch our "forked" process. // Launch our "forked" process.
BOOL bSuccess = CreateProcess ( module, module, BOOL bSuccess = CreateProcess ( module, NULL,
0, // PROCESS_SECURITY_ATTRIBUTES 0, // PROCESS_SECURITY_ATTRIBUTES
0, // THREAD_SECURITY_ATTRIBUTES 0, // THREAD_SECURITY_ATTRIBUTES
TRUE, // We went to inherit handles. TRUE, // We went to inherit handles.