From: dms <dms@c11ca15a-4712-0410-83d8-924469b57eb5>
Date: Sun, 20 Aug 2000 13:33:01 +0000 (+0000)
Subject: double fork -> VERB(2), minor cosmetics
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=6adf7a6cc21f14e5e3fe1f2658e772f5fa91a28e;p=infobot.git

double fork -> VERB(2), minor cosmetics


git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@52 c11ca15a-4712-0410-83d8-924469b57eb5
---

diff --git a/src/Misc.pl b/src/Misc.pl
index cbb31e7..0215b4f 100644
--- a/src/Misc.pl
+++ b/src/Misc.pl
@@ -595,7 +595,7 @@ sub Forker {
     my $pid;
 
     &shmFlush();
-    &status("double fork detected; not forking.") if ($$ != $bot_pid);
+    &VERB("double fork detected; not forking.",2) if ($$ != $bot_pid);
 
     if (&IsParam("forking") and $$ == $bot_pid) {
 	return $noreply unless (&addForked($label));
@@ -635,4 +635,5 @@ sub closePID {
     return 1 if (unlink $file{PID});
     return 0 if ( -f $file{PID});
 }
+
 1;