From 37d83fa441f945be8f62ecb3bea3cc29c55aa181 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 16 Mar 2008 07:25:52 +0000 Subject: [PATCH] okay, really now, how about this --- FS/FS/UID.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FS/FS/UID.pm b/FS/FS/UID.pm index 159649a59..356efa49c 100644 --- a/FS/FS/UID.pm +++ b/FS/FS/UID.pm @@ -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) { -- 2.11.0