Commit 868c48a0 authored by Franco Fichtner's avatar Franco Fichtner

services: fix a crash report

(cherry picked from commit b990aad6)
parent 0077ff23
...@@ -121,7 +121,7 @@ function services_radvd_configure($blacklist = array()) ...@@ -121,7 +121,7 @@ function services_radvd_configure($blacklist = array())
} elseif (isset($blacklist[$dhcpv6if])) { } elseif (isset($blacklist[$dhcpv6if])) {
/* Do not put in the config an interface which is down */ /* Do not put in the config an interface which is down */
continue; continue;
} elseif ($dhcpv6ifconf['ramode'] == "disabled") { } elseif (!isset($dhcpv6ifconf['ramode']) || $dhcpv6ifconf['ramode'] == 'disabled') {
continue; continue;
} }
......
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