From d421e31930e8fc036b70eb0af4fc08872147fb75 Mon Sep 17 00:00:00 2001 From: Ermal Date: Wed, 23 Mar 2011 13:10:13 +0000 Subject: Do not error out for pptp/l2tp localip setting not set since its legitimate. --- etc/inc/interfaces.inc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'etc/inc') diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index a77218c..079b8bc 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -1215,8 +1215,8 @@ function interface_ppps_configure($interface) { $localips[$pid] = get_interface_ip($port); // try to get the interface IP from the port if(!is_ipaddr($localips[$pid])){ - log_error("Could not get a Local IP address for PPTP/L2TP link on {$port} in interfaces_ppps_configure."); - return 0; + log_error("Could not get a Local IP address for PPTP/L2TP link on {$port} in interfaces_ppps_configure. Using 0.0.0.0 ip!"); + $localips[$pid] = "0.0.0.0"; } /* XXX: This needs to go away soon! [It's commented out!] */ /* Configure the gateway (remote IP ) */ @@ -1492,7 +1492,6 @@ EOD; $mpdconf .= <<