diff options
author | jim-p <jimp@pfsense.org> | 2012-12-04 11:07:22 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-12-04 11:07:22 -0500 |
commit | 063e0792c10bf8d496b2b6c179467b8d0c6839bc (patch) | |
tree | febf02883044a8bcf1faafcb9272c9a3437613c5 | |
parent | 8cd9708e12a7a03cfd7e7ebacc5a8ac57aa2fa2f (diff) | |
download | pfsense-063e0792c10bf8d496b2b6c179467b8d0c6839bc.zip pfsense-063e0792c10bf8d496b2b6c179467b8d0c6839bc.tar.gz |
Remove this now-irrelevant comment.
-rwxr-xr-x | usr/local/www/services_dhcp.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/usr/local/www/services_dhcp.php b/usr/local/www/services_dhcp.php index 268542e..ec70f85 100755 --- a/usr/local/www/services_dhcp.php +++ b/usr/local/www/services_dhcp.php @@ -196,11 +196,6 @@ if (is_array($dhcpdconf)) { $ifcfgip = $config['interfaces'][$if]['ipaddr']; $ifcfgsn = $config['interfaces'][$if]['subnet']; -/* set the enabled flag which will tell us if DHCP relay is enabled - * on any interface. We will use this to disable DHCP server since - * the two are not compatible with each other. - */ - function is_inrange($test, $start, $end) { if ( (ip2ulong($test) < ip2ulong($end)) && (ip2ulong($test) > ip2ulong($start)) ) return true; |