summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_captiveportal.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-09-11 21:30:19 -0400
committerScott Ullrich <sullrich@pfsense.org>2009-09-11 21:30:19 -0400
commitb3890d78c0d3c2f1f851330bff1fcf68deb4b325 (patch)
tree94f1ada576d2f2069a32d4c5c9f6e0ad492bb41d /usr/local/www/status_captiveportal.php
parent5ba2df7149f33fd33583a8bae35dc2002f1cd4b2 (diff)
downloadpfsense-b3890d78c0d3c2f1f851330bff1fcf68deb4b325.zip
pfsense-b3890d78c0d3c2f1f851330bff1fcf68deb4b325.tar.gz
Lock around read call
Diffstat (limited to 'usr/local/www/status_captiveportal.php')
-rwxr-xr-xusr/local/www/status_captiveportal.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr/local/www/status_captiveportal.php b/usr/local/www/status_captiveportal.php
index ab0e20d..7a66011 100755
--- a/usr/local/www/status_captiveportal.php
+++ b/usr/local/www/status_captiveportal.php
@@ -61,10 +61,13 @@ function clientcmp($a, $b) {
}
$cpdb = array();
-if (file_exists("{$g['vardb_path']}/captiveportal.db"))
- $cpcontents = file("{$g['vardb_path']}/captiveportal.db", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
-else
+if (file_exists("{$g['vardb_path']}/captiveportal.db")) {
+ $captiveportallck = lock('captiveportal');
+ $cpcontents = file("/var/db/captiveportal.db", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
+ unlock($captiveportallck);
+} else {
$cpcontents = array();
+}
$concurrent = count($cpcontents);
OpenPOWER on IntegriCloud