]> git.p6c8.net - selfforum.git/commitdiff
fixed the "strict subs" error
authorndparker <>
Thu, 26 Jul 2001 00:41:44 +0000 (00:41 +0000)
committerndparker <>
Thu, 26 Jul 2001 00:41:44 +0000 (00:41 +0000)
selfforum-cgi/shared/Arc/Starter.pm

index c7fe64e8ae6b736acf35b840127147c6d8467bda..ea923a7dd2a449fc8492ea180b6818fb158ac939 100644 (file)
@@ -48,14 +48,16 @@ sub win32_start ($) {
   require Win32::Process; Win32::Process -> import ('NORMAL_PRIORITY_CLASS', 'DETACHED_PROCESS');
   require Win32;
 
   require Win32::Process; Win32::Process -> import ('NORMAL_PRIORITY_CLASS', 'DETACHED_PROCESS');
   require Win32;
 
-  Win32::Process::Create(
-    $p,
-    $x,
-    "perl $sev",
-    0,
-    NORMAL_PRIORITY_CLASS | DETACHED_PROCESS,
-    "."
-  ) or warn 'could not execute severancer: '.Win32::FormatMessage(Win32::GetLastError());
+  eval q{
+    Win32::Process::Create(
+      $p,
+      $x,
+      "perl $sev",
+      0,
+      NORMAL_PRIORITY_CLASS | DETACHED_PROCESS,
+      "."
+    ) or warn 'could not execute severancer: '.Win32::FormatMessage(Win32::GetLastError());
+  }
 }
 
 ### posix_start () #############################################################
 }
 
 ### posix_start () #############################################################

patrick-canterino.de