removing "Use Carp" and "sub die_with_dignity" that I was supposed to remove from the previous patch before checking it in.

This commit is contained in:
justdave%syndicomm.com 2001-07-04 05:28:39 +00:00
Родитель e60d8707f2
Коммит a8d4f31ac9
1 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -68,7 +68,7 @@ use DBI;
use Date::Format; # For time2str().
use Date::Parse; # For str2time().
use Carp; # for confess
#use Carp; # for confess
use RelationSet;
# $ENV{PATH} is not taint safe
@ -87,12 +87,12 @@ $::dbwritesallowed = 1;
# Joe Robins, 7/5/00
$::superusergroupset = "9223372036854775807";
sub die_with_dignity {
my ($err_msg) = @_;
print $err_msg;
confess($err_msg);
}
$::SIG{__DIE__} = \&die_with_dignity;
#sub die_with_dignity {
# my ($err_msg) = @_;
# print $err_msg;
# confess($err_msg);
#}
#$::SIG{__DIE__} = \&die_with_dignity;
sub ConnectToDatabase {
my ($useshadow) = (@_);