diff options
author | Ermal LUÇI <eri@pfsense.org> | 2014-11-26 11:16:39 +0100 |
---|---|---|
committer | Ermal LUÇI <eri@pfsense.org> | 2014-11-26 11:16:39 +0100 |
commit | 5574e8d59e4d64878a5e49c0c419478539b195bc (patch) | |
tree | c32639fc01128344880c77e40cd870f50db19520 /etc | |
parent | 708aa0eff85e5632942aa3e146ebaffdf5c081b9 (diff) | |
download | pfsense-5574e8d59e4d64878a5e49c0c419478539b195bc.zip pfsense-5574e8d59e4d64878a5e49c0c419478539b195bc.tar.gz |
Correct the variable name typo to allow rc.linkup to function properly.
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.linkup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.linkup b/etc/rc.linkup index 4f71ed7..92db7f7 100755 --- a/etc/rc.linkup +++ b/etc/rc.linkup @@ -44,7 +44,7 @@ function handle_argument_group($iface, $argument2) { return; } - if (!isset($config['interfaces'][$interface]['enable'])) { + if (!isset($config['interfaces'][$iface]['enable'])) { log_error("Linkup detected on disabled interface...Ignoring"); return; } |