diff options
author | smos <seth.mos@dds.nl> | 2012-05-23 18:34:49 +0200 |
---|---|---|
committer | smos <seth.mos@dds.nl> | 2012-05-23 18:36:05 +0200 |
commit | 323954b1134e31d482e626f3509a329f5fc483c9 (patch) | |
tree | 3df39633bc4020e39f85695591b779462b5c9ddf /etc/inc | |
parent | 6805d2d25f75ccb6d9b1da3814ba2244b3e3107e (diff) | |
download | pfsense-323954b1134e31d482e626f3509a329f5fc483c9.zip pfsense-323954b1134e31d482e626f3509a329f5fc483c9.tar.gz |
Unset the IP protocol tag while processing this array. This prevents a log message
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/filter.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index 3d676ca..fc44d6d 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -668,6 +668,8 @@ function filter_generate_gateways() { if (is_array($GatewayGroupsList)) { foreach ($GatewayGroupsList as $gateway => $members) { $route = ""; + /* hey, that's not a group member! */ + unset($members['ipprotocol']); if (count($members) > 0) { $foundlb = 0; $routeto = ""; |