diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-02-28 18:54:39 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-02-28 18:54:39 +0000 |
commit | 24452897d1a389f5dd1578522451d59e581ae820 (patch) | |
tree | ac6df70324d79e554235a1cc320b6b77a584f77c /etc/inc | |
parent | 76e89143b884588156d42cb945fc4e951d4f0b99 (diff) | |
download | pfsense-24452897d1a389f5dd1578522451d59e581ae820.zip pfsense-24452897d1a389f5dd1578522451d59e581ae820.tar.gz |
Make sure there are spaces between carp itnerface names
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 83c448b..6979805 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -173,7 +173,7 @@ function link_ip_to_carp_interface($ip) { $interface = filter_opt_interface_to_real($ifname); if($ft_ip == $carp_ft_ip) if(stristr($carp_ints,$carp_int) == false) - $carp_ints .= $carp_int; + $carp_ints .= " " . $carp_int; } } return $carp_ints; |