summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-01-15 03:11:31 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-01-15 03:11:31 +0000
commit0831bc8616b85859751d9c30f35030dd35cb3a22 (patch)
treeaf153642965fe43cc7b659427482906eb24912c4
parent27128470c5615f743510c55bf2c6a50ea32a91b5 (diff)
downloadpfsense-0831bc8616b85859751d9c30f35030dd35cb3a22.zip
pfsense-0831bc8616b85859751d9c30f35030dd35cb3a22.tar.gz
Fix bugs found by eclipse
-rw-r--r--etc/inc/filter.inc3
-rw-r--r--etc/inc/interfaces.inc2
-rw-r--r--etc/inc/pfsense-utils.inc2
-rw-r--r--etc/inc/pkg-utils.inc8
-rwxr-xr-xusr/local/www/edit.php2
-rwxr-xr-xusr/local/www/fbegin.inc6
-rwxr-xr-xusr/local/www/interfaces_wlan.inc2
-rwxr-xr-xusr/local/www/progress.php1
-rwxr-xr-xusr/local/www/system_advanced.php2
-rwxr-xr-xusr/local/www/system_routes.php2
10 files changed, 16 insertions, 14 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc
index c5592d3..aed35b4 100644
--- a/etc/inc/filter.inc
+++ b/etc/inc/filter.inc
@@ -2021,6 +2021,9 @@ function create_firewall_outgoing_rules_to_itself() {
function process_carp_nat_rules() {
global $g, $config;
+
+ $wan_interface = get_real_wan_interface();
+
if(isset($config['system']['developerspew'])) {
$mt = microtime();
echo "process_carp_nat_rules() being called $mt\n";
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc
index 2dbd4cc..4c97418 100644
--- a/etc/inc/interfaces.inc
+++ b/etc/inc/interfaces.inc
@@ -721,7 +721,7 @@ function find_dhclient_process($interface) {
}
function interfaces_wan_configure() {
- global $config, $g;
+ global $config, $g, $bridges_total;
$wancfg = $config['interfaces']['wan'];
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index 0328298..2c6f0e3 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -896,7 +896,7 @@ function backup_config_section($section) {
*/
function backup_config_ts_scheduler() {
global $config;
- $new_section = &$config['syste']['schedulertype'];
+ $new_section = &$config['system']['schedulertype'];
/* generate configuration XML */
$xmlconfig = dump_xml_config($new_section, $section);
$xmlconfig = str_replace("<?xml version=\"1.0\"?>", "", $xmlconfig);
diff --git a/etc/inc/pkg-utils.inc b/etc/inc/pkg-utils.inc
index 9464edd..15b305e 100644
--- a/etc/inc/pkg-utils.inc
+++ b/etc/inc/pkg-utils.inc
@@ -156,9 +156,9 @@ function is_freebsd_pkg_installed($pkg) {
*
*/
function get_pkg_depends($pkg_name, $filetype = ".xml", $format = "files", $return_nosync = 1) {
- global $config;
+ global $config;
+ $pkg_id = get_pkg_id($pkg_name);
if(!is_numeric($pkg_name)) {
- $pkg_id = get_pkg_id($pkg_name);
if($pkg_id == -1) return -1; // This package doesn't really exist - exit the function.
} else {
if(!isset($config['installedpackages']['package'][$pkg_id])) return; // No package belongs to the pkg_id passed to this function.
@@ -236,8 +236,8 @@ function sync_package($pkg_name, $sync_depends = true, $show_message = false) {
* The code is obviously wrong, but I'm not sure what it's supposed to do?
*/
if(isset($pkg_config['nosync'])) continue;
- if($pkg['custom_php_global_functions'] <> "")
- eval($pkg['custom_php_global_functions']);
+ if($pkg_config['custom_php_global_functions'] <> "")
+ eval($pkg_config['custom_php_global_functions']);
if($pkg_config['custom_php_resync_config_command'] <> "")
eval($pkg_config['custom_php_resync_config_command']);
if($sync_depends == true) {
diff --git a/usr/local/www/edit.php b/usr/local/www/edit.php
index e6c0265..8ba9e2c 100755
--- a/usr/local/www/edit.php
+++ b/usr/local/www/edit.php
@@ -136,7 +136,7 @@ function sf() { document.forms[0].savetopath.focus(); }
<?php if($_POST['highlight'] == "no"): ?>
Rows: <input size="3" name="rows" value="<? echo $rows; ?>">
Cols: <input size="3" name="cols" value="<? echo $cols; ?>">
- <?php endif ?>
+ <?php endif; ?>
|
Highlighting: <input name="highlight" type="radio" value="yes"
<?php if($highlight == "yes") echo " checked"; ?>>Enabled
diff --git a/usr/local/www/fbegin.inc b/usr/local/www/fbegin.inc
index 084234d..5c2827f 100755
--- a/usr/local/www/fbegin.inc
+++ b/usr/local/www/fbegin.inc
@@ -101,7 +101,7 @@ require_once("notices.inc");
<li><a href="/system.php" class="navlnk">General Setup</a></li>
<?php if($g['platform'] == "pfSense"): ?>
<li><a href="/pkg_mgr.php" class="navlnk">Packages</a></li>
- <?php endif ?>
+ <?php endif; ?>
<li><a href="/wizard.php?xml=setup_wizard.xml" class="navlnk">Setup wizard</a></li>
<li><a href="/system_routes.php" class="navlnk">Static routes</a></li>
</ul>
@@ -169,7 +169,7 @@ require_once("notices.inc");
<li><a href="/diag_ipsec_sad.php" class="navlnk">IPsec</a></li>
<?php if($g['platform'] == "pfSense"): ?>
<li><a href="/diag_pkglogs.php" class="navlnk">Package logs</a></li>
- <?php endif ?>
+ <?php endif; ?>
<li><a href="/status_queues.php" class="navlnk">Queues</a></li>
<li><a href="/status_services.php" class="navlnk">Services</a></li>
<li><a href="/index.php" class="navlnk">System</a></li>
@@ -211,7 +211,7 @@ require_once("notices.inc");
<?php if(isset($config['system']['developer'])): ?>
<li><hr width="80%"/></li>
<li><a href="/restart_httpd.php" class="navlnk">Restart HTTPD</a></li>
- <?php endif ?>
+ <?php endif; ?>
</ul>
</li>
</ul>
diff --git a/usr/local/www/interfaces_wlan.inc b/usr/local/www/interfaces_wlan.inc
index 45a90dd..56ca5cf 100755
--- a/usr/local/www/interfaces_wlan.inc
+++ b/usr/local/www/interfaces_wlan.inc
@@ -281,7 +281,7 @@ function wireless_config_print() {
</tr>
<tr>
<td valign="top" class="vncellreq">SSID</td>
- <td class="vtable"><?=$mandfldhtml;?><input name="ssid" type="text" class="formfld" id="ssid" size="20" value="<?=htmlspecialchars($pconfig['ssid']);?>">
+ <td class="vtable"><input name="ssid" type="text" class="formfld" id="ssid" size="20" value="<?=htmlspecialchars($pconfig['ssid']);?>">
</td>
</tr>
<tr>
diff --git a/usr/local/www/progress.php b/usr/local/www/progress.php
index b677874..2325c03 100755
--- a/usr/local/www/progress.php
+++ b/usr/local/www/progress.php
@@ -107,6 +107,5 @@ if (!$X) {
</BODY>
</HTML>
-<? } } ?>
diff --git a/usr/local/www/system_advanced.php b/usr/local/www/system_advanced.php
index 92bb650..30b37fd 100755
--- a/usr/local/www/system_advanced.php
+++ b/usr/local/www/system_advanced.php
@@ -315,7 +315,7 @@ include("head.inc");
<tr>
<td colspan="2" class="list" height="12"></td>
</tr>
- <?php endif ?>
+ <?php endif; ?>
<tr>
<td colspan="2" valign="top" class="listtopic">Secure Shell</td>
</tr>
diff --git a/usr/local/www/system_routes.php b/usr/local/www/system_routes.php
index 86e24a9..2edde7a 100755
--- a/usr/local/www/system_routes.php
+++ b/usr/local/www/system_routes.php
@@ -109,7 +109,7 @@ include("head.inc");
<tr><td colspan=2><hr><input type="submit" value="Save"></td></tr>
</table><br>
- <?php endif ?>
+ <?php endif; ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
OpenPOWER on IntegriCloud