From 16126bd9414aeec04f8ec599aec62c447c5825a6 Mon Sep 17 00:00:00 2001 From: Jared Johnson Date: Mon, 22 Dec 2014 17:00:29 -0600 Subject: [PATCH] Less 'and' --- plugins/greylisting | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/greylisting b/plugins/greylisting index e7b3a02..5289601 100644 --- a/plugins/greylisting +++ b/plugins/greylisting @@ -474,7 +474,7 @@ sub prune_db { sub exclude { my ( $self ) = @_; return 1 if $self->is_immune(); - return 1 if $self->{_args}{p0f} and ! $self->p0f_match(); + return 1 if $self->{_args}{p0f} && ! $self->p0f_match(); return 1 if $self->geoip_match(); return 1 if $self->exclude_file_match(); return;