Author: vetinari
Date: Wed Sep 26 00:02:15 2007
New Revision: 800
Modified:
trunk/lib/Qpsmtpd/TcpServer/Prefork.pm
Log:
fix uninitialized values (and empty ->id)
Modified: trunk/lib/Qpsmtpd/TcpServer/Prefork.pm
==============================================================================
--- trunk/lib/Qpsmtpd/TcpServer/Prefork.pm (original)
+++ trunk/lib/Qpsmtpd/TcpServer/Prefork.pm Wed Sep 26 00:02:15 2007
@@ -11,7 +11,8 @@
my $self = shift;
#reset info
- $self->{_connection} = Qpsmtpd::Connection->new(); #reset connection
+ # $self->{_connection} = Qpsmtpd::Connection->new(); #reset connection
+ $self->reset_connection; #reset connection
$self->reset_transaction;
$self->SUPER::start_connection(@_);
}