Files
bpfire/config
Michael Tremer 025741919a firewall: Fix perl coding error.
Example:
	my @as = (1, 2, 3);
	foreach my $a (@as) {
		$a += 1;
		print "$a\n";
	}

$a will be a reference to the number in the array and not
copied. Therefore $a += 1 will change the numbers in the
array as well, so that after the loop the content of @as
would be (2, 3, 4).
To avoid that, the number needs to be copied into a new
variable like: my $b = $a; and we are fine.

This caused that the content of the @sources and @destinations
array has been altered for the second run of the loop and
incorrect (i.e. no) rules were created.
2014-03-31 13:16:26 +02:00
..
2012-08-29 12:25:24 -04:00
2014-01-19 10:57:34 +01:00
2013-02-05 21:35:16 +01:00
2009-05-15 08:07:25 +02:00
2011-06-01 23:46:42 +02:00
2014-02-02 14:32:15 +01:00
2014-03-17 14:17:44 +01:00
2010-12-10 13:29:23 +01:00
2014-03-31 13:16:26 +02:00
2013-01-17 20:38:01 +01:00
2014-03-02 20:48:58 +01:00
2012-09-06 16:55:27 +02:00
2011-06-24 06:40:34 +02:00
2009-03-18 16:58:38 +01:00
2012-08-08 10:48:55 +02:00
2009-07-18 15:12:31 +02:00
2009-06-01 16:02:10 +02:00
2013-01-15 17:48:43 +01:00
2011-02-20 15:51:15 +01:00
2010-03-14 11:38:06 +01:00
2012-11-26 17:28:25 +01:00
2013-07-15 17:05:44 +02:00
2010-12-02 16:30:11 +01:00
2013-07-29 21:29:34 +02:00
2011-10-02 17:40:28 +02:00
2014-02-15 17:50:00 +01:00
2013-10-03 13:44:56 +02:00
2013-10-04 14:52:44 +02:00
2009-03-24 22:39:11 +01:00
2012-08-03 19:22:05 +02:00
2014-02-01 20:57:18 +01:00
2013-08-18 16:20:59 +02:00