From: Dave Hart Date: Mon, 20 Apr 2009 22:42:59 +0000 (+0000) Subject: ntp_iocompletionport.c: X-Git-Tag: NTP_4_2_4P7_RC3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99639905aed2dd3c71bfdbf5ff91e5aaf6881f53;p=thirdparty%2Fntp.git ntp_iocompletionport.c: revert overlooked CreateEvent naming/sharing change not conditionalized away already bk: 49ecfa73JrK58L9rhOZKR1NIxhERig --- diff --git a/ports/winnt/ntpd/ntp_iocompletionport.c b/ports/winnt/ntpd/ntp_iocompletionport.c index 3ee28a0a5..d9b35673b 100644 --- a/ports/winnt/ntpd/ntp_iocompletionport.c +++ b/ports/winnt/ntpd/ntp_iocompletionport.c @@ -288,10 +288,10 @@ init_io_completion_port( } /* Create the event used to signal an exit event */ - WaitableExitEventHandle = CreateEvent(NULL, FALSE, FALSE, "WaitableExitEventHandle"); + WaitableExitEventHandle = CreateEvent(NULL, FALSE, FALSE, NULL); if (WaitableExitEventHandle == NULL) { msyslog(LOG_ERR, - "Can't create exit event handle: %m - another process may be running - EXITING"); + "Can't create exit event handle: %m - EXITING"); exit(1); }