summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-03-09 22:48:24 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-03-09 22:48:24 +0000
commit257ff0fff15443e980f321a03ef44215f92e5a63 (patch)
tree77bae89dc19e0b0a8676714e1677b877aff1636d /etc
parent8d568a9b3f0a1b4a201500ba9876feb009dc2470 (diff)
downloadpfsense-257ff0fff15443e980f321a03ef44215f92e5a63.zip
pfsense-257ff0fff15443e980f321a03ef44215f92e5a63.tar.gz
Missing colon
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/pfsense-utils.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index 7726b49..3fe4caa 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -562,7 +562,7 @@ function resync_all_package_configs_bootup($show_message) {
if($pkg_config['custom_php_command_before_form'] <> "")
eval($pkg_config['custom_php_command_before_form']);
if($pkg_config['custom_php_resync_config_command'] <> "")
- eval($pkg_config['custom_php_resync_config_command']);
+ eval($pkg_config['custom_php_resync_config_command']);
if($show_message == true) print " " . $package['name'];
if($pkg_config['additional_files_needed'] != "") {
foreach($pkg_config['additional_files_needed']['0']['item'] as $item) {
@@ -640,10 +640,10 @@ function is_service_running($service_name) {
$status = `/bin/ps ax | grep {$service_name}`;
$status_split = split("\n", $service_name);
$counter = 0;
- foreach ($status_split as $ss) $counter++
+ foreach ($status_split as $ss) $counter++;
if($counter > 1) return 1;
return 0;
-
+
}
?>
OpenPOWER on IntegriCloud