Commit 288deb5c authored by Franco Fichtner's avatar Franco Fichtner

inc: fix two overly spammy warnings

parent d78e5726
...@@ -1138,13 +1138,15 @@ function unlink_if_exists($fn) { ...@@ -1138,13 +1138,15 @@ function unlink_if_exists($fn) {
@unlink($fn); @unlink($fn);
} }
} }
/* make a global alias table (for faster lookups) */ /* make a global alias table (for faster lookups) */
function alias_make_table($config) { function alias_make_table($config)
{
global $aliastable; global $aliastable;
$aliastable = array(); $aliastable = array();
if (is_array($config['aliases']['alias'])) { if (isset($config['aliases']['alias'])) {
foreach ($config['aliases']['alias'] as $alias) { foreach ($config['aliases']['alias'] as $alias) {
if ($alias['name']) if ($alias['name'])
$aliastable[$alias['name']] = $alias['address']; $aliastable[$alias['name']] = $alias['address'];
...@@ -1817,12 +1819,14 @@ function explode_assoc($delimiter, $string) { ...@@ -1817,12 +1819,14 @@ function explode_assoc($delimiter, $string) {
return $result; return $result;
} }
function get_staticroutes($returnsubnetsonly = false, $returnhostnames = false) { function get_staticroutes($returnsubnetsonly = false, $returnhostnames = false)
{
global $config, $aliastable; global $config, $aliastable;
/* Bail if there are no routes, but return an array always so callers don't have to check. */ /* Bail if there are no routes, but return an array always so callers don't have to check. */
if (!is_array($config['staticroutes']['route'])) if (!isset($config['staticroutes']['route'])) {
return array(); return array();
}
$allstaticroutes = array(); $allstaticroutes = array();
$allsubnets = array(); $allsubnets = array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment