]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
ntp_iocompletionport.c:
authorDave Hart <hart@ntp.org>
Mon, 20 Apr 2009 22:42:59 +0000 (22:42 +0000)
committerDave Hart <hart@ntp.org>
Mon, 20 Apr 2009 22:42:59 +0000 (22:42 +0000)
  revert overlooked CreateEvent naming/sharing change not conditionalized away already

bk: 49ecfa73JrK58L9rhOZKR1NIxhERig

ports/winnt/ntpd/ntp_iocompletionport.c

index 3ee28a0a5fe429bdd5ffc43c2fb9b52f25a28fea..d9b35673b4fed0d36c652f4bcc9a58d387b48cb5 100644 (file)
@@ -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);
        }