diff options
author | Chris Buechler <cmb@cmb-macbook-pro.local> | 2009-03-09 17:36:35 -0400 |
---|---|---|
committer | Chris Buechler <cmb@cmb-macbook-pro.local> | 2009-03-09 17:36:35 -0400 |
commit | 16e78aa053395df084d5c0fe7414a2ff667d6b06 (patch) | |
tree | cc56471cb5677eba9e438f02dd19c210d51af763 /etc/inc | |
parent | 47c8b0369007eea4f78ea6c158e2ccd4a8839aea (diff) | |
download | pfsense-16e78aa053395df084d5c0fe7414a2ff667d6b06.zip pfsense-16e78aa053395df084d5c0fe7414a2ff667d6b06.tar.gz |
fix return of gateway interface for route-to
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/gwlb.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/inc/gwlb.inc b/etc/inc/gwlb.inc index 38ee5fb..d564e69 100644 --- a/etc/inc/gwlb.inc +++ b/etc/inc/gwlb.inc @@ -268,6 +268,7 @@ function return_gateways_array() { $gateway['monitor'] = $gateway['gateway']; } /* include the gateway index as the attribute */ + $gateway['interface'] = convert_friendly_interface_to_real_interface_name($gateway['interface']); $gateway['attribute'] = "$i"; $gateways_arr[$gateway['name']] = $gateway; $i++; |