openbsd-ports/www/mhonarc/patches/patch-lib_mhopt_pl
2017-03-02 09:41:30 +00:00

14 lines
545 B
Plaintext

$OpenBSD: patch-lib_mhopt_pl,v 1.2 2017/03/02 09:41:30 sthen Exp $
defined(%hash) is deprecated
--- lib/mhopt.pl.orig Sun Jan 29 19:45:55 2012
+++ lib/mhopt.pl Thu Mar 2 09:36:34 2017
@@ -865,7 +865,7 @@ sub update_data_1_to_2 {
sub update_data_2_1_to_later {
no warnings qw(deprecated);
# we can preserve filter arguments
- if (defined(%main::MIMEFiltersArgs)) {
+ if (%main::MIMEFiltersArgs) {
warn qq/ preserving MIMEARGS...\n/;
%readmail::MIMEFiltersArgs = %main::MIMEFiltersArgs;
$IsDefault{'MIMEARGS'} = 0;