igmpproxy param -d doesn't like the space before optarg. Fixes #3852

This commit is contained in:
Renato Botelho 2014-09-08 18:34:45 -03:00
parent 1b5675a77e
commit 354a1d3ffc
1 changed files with 2 additions and 2 deletions

View File

@ -1286,8 +1286,8 @@ EOD;
fclose($igmpfl);
unset($igmpconf);
/* NOTE: -d 4 means everything LOG_WARNING and smaller */
mwexec("/usr/local/sbin/igmpproxy -d 4 -c {$g['tmp_path']}/igmpproxy.conf");
/* NOTE: -d4 means everything LOG_WARNING and smaller */
mwexec("/usr/local/sbin/igmpproxy -d4 -c {$g['tmp_path']}/igmpproxy.conf");
log_error(gettext("Started IGMP proxy service."));
return 0;