From: dms 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=97728bd17ca2e1bd059170e55fecc3e98972d2dc;p=infobot.git double fork -> VERB(2), minor cosmetics git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@52 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/src/Misc.pl b/blootbot/src/Misc.pl index cbb31e7..0215b4f 100644 --- a/blootbot/src/Misc.pl +++ b/blootbot/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;