Fix missing assignment in ident/p0f rcpt_handler()

This commit is contained in:
Jared Johnson 2014-12-11 16:29:26 -06:00
parent ec470ed08e
commit 1e2c0a6f78

View File

@ -215,7 +215,7 @@ sub rcpt_handler {
} }
sub check_genre { sub check_genre {
my ( $self, $rcpt ); my ( $self, $rcpt ) = @_;
my $p0f = $self->connection->notes('p0f') or return 0; my $p0f = $self->connection->notes('p0f') or return 0;
return 0 if $self->exclude_connection(); return 0 if $self->exclude_connection();
return 0 if $self->exclude_recipient($rcpt); return 0 if $self->exclude_recipient($rcpt);