okay, really now, how about this
authorivan <ivan>
Sun, 16 Mar 2008 07:25:52 +0000 (07:25 +0000)
committerivan <ivan>
Sun, 16 Mar 2008 07:25:52 +0000 (07:25 +0000)
FS/FS/UID.pm

index 159649a..356efa4 100644 (file)
@@ -118,8 +118,9 @@ sub forksuidsetup {
 
   my $sth = $dbh->prepare("SELECT COUNT(*) FROM conf");
   if ( $sth ) {
-    $sth->execute or die $sth->errstr;
-    $confcount = $sth->fetchrow_arrayref->[0];
+    if ( $sth->execute ) {
+      $confcount = $sth->fetchrow_arrayref->[0];
+    }
   }
 
   if ($confcount) {