]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Won't somebody please think of the children.. kqueue too ;(
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 6 Feb 2008 19:27:26 +0000 (19:27 +0000)
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 6 Feb 2008 19:27:26 +0000 (19:27 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8846 e03df62e-2008-0410-955e-edbf42e46eb7

src/socketengines/socketengine_kqueue.cpp

index ccb1d1dc3c40a7f57956425cbccf884171a38640..513677e4466a41a574b2e7ac5f8fb4321f1ba08b 100644 (file)
@@ -34,10 +34,10 @@ void KQueueEngine::RecoverFromFork()
        EngineHandle = kqueue();
        if (EngineHandle == -1)
        {
-               ServerInstance->Log(SPARSE,"ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
-               ServerInstance->Log(SPARSE,"ERROR: this is a fatal error, exiting now.");
-               printf("ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
-               printf("ERROR: this is a fatal error, exiting now.");
+               ServerInstance->Log(DEFAULT, "ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.");
+               ServerInstance->Log(DEFAULT, "ERROR: this is a fatal error, exiting now.");
+               printf("ERROR: Could not initialize socket engine. Your kernel probably does not have the proper features.\n");
+               printf("ERROR: this is a fatal error, exiting now.\n");
                ServerInstance->Exit(EXIT_STATUS_SOCKETENGINE);
        }
        CurrentSetSize = 0;