File majordomo-1.94.5.fix-split-no-longer-assigning-to-_-bnc-716393.patch of Package majordomo.import5145
diff --git a/majordomo.pl b/majordomo.pl
index 3c8bbc2..83e0da7 100644
--- a/majordomo.pl
+++ b/majordomo.pl
@@ -95,14 +95,14 @@ sub main'ParseAddrs {
local($_) = shift;
1 while s/\([^\(\)]*\)//g; # strip comments
1 while s/"[^"]*"\s//g; # strip comments"
- split(/,/); # split into parts
- foreach (@_) {
+ my @t = split(/,/); # split into parts
+ foreach (@t) {
1 while s/.*<(.*)>.*/$1/;
s/^\s+//;
s/\s+$//;
}
- @_;
+ @t;
}
# Check to see if a list is valid. If it is, return the validated list