diff options
author | jim-p <jimp@pfsense.org> | 2013-05-16 12:13:29 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-05-16 12:13:29 -0400 |
commit | 41567e0639d1e7541e2dbf249e3e569f017e984e (patch) | |
tree | aa08b7e6eba4b86459824d36654f350b41059c69 /etc | |
parent | 47a24491e2ea07a19d360d29325c1780652026a4 (diff) | |
download | pfsense-41567e0639d1e7541e2dbf249e3e569f017e984e.zip pfsense-41567e0639d1e7541e2dbf249e3e569f017e984e.tar.gz |
Make sure there's a space here to prevent accidentally breaking the syntax.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/services.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/services.inc b/etc/inc/services.inc index c01ce04..0116d3d 100644 --- a/etc/inc/services.inc +++ b/etc/inc/services.inc @@ -1659,7 +1659,7 @@ function services_dnsmasq_configure() { if (array_key_exists($p[0], $standard_args)) unset($standard_args[$p[0]]); } - $args .= implode(' ', array_values($standard_args)); + $args .= ' ' . implode(' ', array_values($standard_args)); /* run dnsmasq */ $cmd = "/usr/local/sbin/dnsmasq --all-servers {$dns_rebind} {$args}"; |