summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/Error.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-02-18 15:57:46 +0000
committerfukachan <fukachan>2003-02-18 15:57:46 +0000
commitf67913d09f41ef7314afe9cdc8d44f81612ecde7 (patch)
treec644ab48b2150a90f7f159e42508ff22f84cd5c9 /fml/lib/FML/Process/Error.pm
parent8a6feb11d322eab22656eb1a76893c7390514af4 (diff)
downloadfml8-f67913d09f41ef7314afe9cdc8d44f81612ecde7.tar.gz
fml8-f67913d09f41ef7314afe9cdc8d44f81612ecde7.tar.bz2
fml8-f67913d09f41ef7314afe9cdc8d44f81612ecde7.zip
use FML::Error->db_open() not FML::Error::Cache for cache db open.
Diffstat (limited to 'fml/lib/FML/Process/Error.pm')
-rw-r--r--fml/lib/FML/Process/Error.pm7
1 files changed, 4 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/Error.pm b/fml/lib/FML/Process/Error.pm
index aea8e24c..8ef57ac8 100644
--- a/fml/lib/FML/Process/Error.pm
+++ b/fml/lib/FML/Process/Error.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2002,2003 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: Error.pm,v 1.26 2003/02/03 12:25:59 fukachan Exp $
+# $FML: Error.pm,v 1.27 2003/02/11 09:48:16 fukachan Exp $
#
package FML::Process::Error;
@@ -152,8 +152,9 @@ sub run
my $bouncer = new Mail::Bounce;
$bouncer->analyze( $msg );
- use FML::Error::Cache;
- my $errorcache = new FML::Error::Cache $curproc;
+ use FML::Error;
+ my $error_obj = new FML::Error $curproc;
+ my $errorcache = $error_obj->db_open();
for my $address ( $bouncer->address_list ) {
my $status = $bouncer->status( $address );