From 1e2c0a6f78f0710a91ea39683f4556444654d84f Mon Sep 17 00:00:00 2001 From: Jared Johnson Date: Thu, 11 Dec 2014 16:29:26 -0600 Subject: [PATCH] Fix missing assignment in ident/p0f rcpt_handler() --- plugins/ident/p0f | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ident/p0f b/plugins/ident/p0f index 3947d3e..22ab995 100644 --- a/plugins/ident/p0f +++ b/plugins/ident/p0f @@ -215,7 +215,7 @@ sub rcpt_handler { } sub check_genre { - my ( $self, $rcpt ); + my ( $self, $rcpt ) = @_; my $p0f = $self->connection->notes('p0f') or return 0; return 0 if $self->exclude_connection(); return 0 if $self->exclude_recipient($rcpt);