diff options
author | Ermal <eri@pfsense.org> | 2010-06-16 16:36:32 +0000 |
---|---|---|
committer | Ermal <eri@pfsense.org> | 2010-06-16 16:36:32 +0000 |
commit | ca94282988d0bfd74771e64a98aa542254cb878c (patch) | |
tree | 337390c86ede46808e00e46a4bb90beaad1dd13a /etc | |
parent | 962fd685516ae137674ed0cde2445ebbeeefbdff (diff) | |
download | pfsense-ca94282988d0bfd74771e64a98aa542254cb878c.zip pfsense-ca94282988d0bfd74771e64a98aa542254cb878c.tar.gz |
Actually it needs choparp_ prepended.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/interfaces.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 58091d8..e28ec51 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -780,8 +780,8 @@ function interface_vip_bring_down(&$vip) { switch ($vip['mode']) { case "proxyarp": $vipif = get_real_interface($vip['interface']); - if (file_exists("{$g['varrun_path']}/{$vipif}.pid")) - killbypid("{$g['varrun_path']}/{$vipif}.pid"); + if (file_exists("{$g['varrun_path']}/choparp_{$vipif}.pid")) + killbypid("{$g['varrun_path']}/choparp_{$vipif}.pid"); break; case "ipalias": $vipif = get_real_interface($vip['interface']); |