Skip to content

Commit

Permalink
Merge pull request #384 from jwessel/RELENG_2_3_4
Browse files Browse the repository at this point in the history
  • Loading branch information
rbgarga committed Aug 16, 2017
2 parents ffb463d + 35b637a commit 9391592
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion net/pfSense-pkg-freeradius3/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $FreeBSD$

PORTNAME= pfSense-pkg-freeradius3
PORTVERSION= 0.8
PORTVERSION= 0.9
CATEGORIES= net
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4040,7 +4040,7 @@ function freeradius_validate_interfaces($post, &$input_errors) {
if ($post['varinterfaceipversion'] == 'ipv6addr' && !is_ipaddrv6($post['varinterfaceip'])) {
$input_errors[] = "The 'Interface IP Address' must contain a valid IPv6 address when IPv6 is selected under 'IP Version'.";
}
if (!is_ipaddr_configured($post['varinterfaceip'])) {
if (!is_ipaddr_configured($post['varinterfaceip']) && $post['varinterfaceip'] != "127.0.0.1") {
$input_errors[] = "The 'Interface IP Address' must contain a valid, locally configured IP address!";
}
}
Expand Down

0 comments on commit 9391592

Please sign in to comment.