summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-06-02 21:50:46 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-06-02 21:50:46 +0000
commit2106861ba9caaccba567de1b8b6148ae15ea36cc (patch)
treeb1a0ef16a34279ad3bd9b5a881f77ca4f17d6deb /etc
parent3284207f8859863bb65353c655026f3ca386719d (diff)
downloadpfsense-2106861ba9caaccba567de1b8b6148ae15ea36cc.zip
pfsense-2106861ba9caaccba567de1b8b6148ae15ea36cc.tar.gz
Close STDIN ($fp) handle before returning back to shell. Major doh's.
Diffstat (limited to 'etc')
-rwxr-xr-xetc/rc.initial.setlanip7
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/rc.initial.setlanip b/etc/rc.initial.setlanip
index 7b609d4..e2f7aad 100755
--- a/etc/rc.initial.setlanip
+++ b/etc/rc.initial.setlanip
@@ -40,6 +40,7 @@
echo "\nEnter the new LAN IP address: ";
$lanip = chop(fgets($fp));
if ($lanip === "") {
+ fclose($fp);
exit(0);
}
} while (!is_ipaddr($lanip));
@@ -53,6 +54,7 @@
echo "Enter the new LAN subnet bit count: ";
$lanbits = chop(fgets($fp));
if ($lanbits === "") {
+ fclose($fp);
exit(0);
}
} while (!is_numeric($lanbits) || ($lanbits < 1) || ($lanbits > 31));
@@ -67,6 +69,7 @@
echo "Enter the start address of the client address range: ";
$dhcpstartip = chop(fgets($fp));
if ($dhcpstartip === "") {
+ fclose($fp);
exit(0);
}
} while (!is_ipaddr($dhcpstartip));
@@ -75,6 +78,7 @@
echo "Enter the end address of the client address range: ";
$dhcpendip = chop(fgets($fp));
if ($dhcpendip === "") {
+ fclose($fp);
exit(0);
}
} while (!is_ipaddr($dhcpendip));
@@ -115,4 +119,5 @@ Press ENTER to continue.
EOD;
fgets($fp);
-?>
+ fclose($fp);
+?> \ No newline at end of file
OpenPOWER on IntegriCloud