1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/www/mhonarc/files/patch-lib__mhamain.pl
Michael Scheidell 290a6cd7fb - patching *.pl files to remove deprecated use of defined(%a_hash) statements
- committer is now maintainer

PR:		ports/164560
Submitted by:	Rickie Kerndt <kerndtr@kerndt.com> (maintainer)
Approved by:	maintainer, gabor (mentor, implicit)
2012-01-29 06:34:59 +00:00

12 lines
338 B
Perl

--- ./lib/mhamain.pl.orig 2012-01-16 14:28:02.000000000 -0800
+++ ./lib/mhamain.pl 2012-01-16 14:31:22.000000000 -0800
@@ -1561,7 +1561,7 @@
## Create Index2MsgId if not defined
##
sub defineIndex2MsgId {
- if (!defined(%Index2MsgId)) {
+ if (!(%Index2MsgId)) {
foreach (keys %MsgId) {
$Index2MsgId{$MsgId{$_}} = $_;
}