summaryrefslogtreecommitdiff
path: root/FS/FS/UID.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/UID.pm')
-rw-r--r--FS/FS/UID.pm9
1 files changed, 3 insertions, 6 deletions
diff --git a/FS/FS/UID.pm b/FS/FS/UID.pm
index a94e90f86..dd4850fb2 100644
--- a/FS/FS/UID.pm
+++ b/FS/FS/UID.pm
@@ -114,13 +114,10 @@ sub forksuidsetup {
warn "$me forksuidsetup deciding upon config system to use\n" if $DEBUG;
- my $sth = '';
- if ( dbdef->table('conf')
- and $sth = $dbh->prepare("SELECT COUNT(*) FROM conf")
- and $sth->execute
- )
- {
+ if ( ! $FS::Schema::setup_hack && dbdef->table('conf') ) {
+ my $sth = $dbh->prepare("SELECT COUNT(*) FROM conf") or die $dbh->errstr;
+ $sth->execute or die $sth->errstr;
my $confcount = $sth->fetchrow_arrayref->[0];
if ($confcount) {