diff options
author | Phil Davis <phil.davis@inf.org> | 2016-02-15 07:30:04 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2016-02-15 07:30:04 +0545 |
commit | c1a5347f64f50885f0eb13d775936646f157da11 (patch) | |
tree | 9bfc7a43b8d27d71f29321c4940b6cc47c2a7dd5 /src/etc | |
parent | fef22da779bcfe9ab6d62cf8f39d4b466edeac2c (diff) | |
download | pfsense-c1a5347f64f50885f0eb13d775936646f157da11.zip pfsense-c1a5347f64f50885f0eb13d775936646f157da11.tar.gz |
Fix interface write_config message for dhclient_update_gateway_groups_defaultroute
Typo in var name.
Diffstat (limited to 'src/etc')
-rw-r--r-- | src/etc/inc/gwlb.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/gwlb.inc b/src/etc/inc/gwlb.inc index 6ab8b8a..17c2d5e 100644 --- a/src/etc/inc/gwlb.inc +++ b/src/etc/inc/gwlb.inc @@ -1020,7 +1020,7 @@ function dhclient_update_gateway_groups_defaultroute($interface = "wan") { } } if ($changed && $current_gw) { - write_config(sprintf(gettext('Updating gateway group gateway for %1$s - new gateway is %2$s'), $interfac, $current_gw)); + write_config(sprintf(gettext('Updating gateway group gateway for %1$s - new gateway is %2$s'), $interface, $current_gw)); } } |