summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_wol_edit.php
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-04-14 02:21:58 +0000
committerBill Marquette <billm@pfsense.org>2005-04-14 02:21:58 +0000
commit4f3401e0db4bd4964bafe36020e7aebfa62afb59 (patch)
tree197b27020f574a5b8c19289b8315bdefdd338bbf /usr/local/www/services_wol_edit.php
parent629dd875f66411c15fbaefd59fc63f8ffa21f648 (diff)
downloadpfsense-4f3401e0db4bd4964bafe36020e7aebfa62afb59.zip
pfsense-4f3401e0db4bd4964bafe36020e7aebfa62afb59.tar.gz
normalize MAC addresses
Diffstat (limited to 'usr/local/www/services_wol_edit.php')
-rwxr-xr-xusr/local/www/services_wol_edit.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/usr/local/www/services_wol_edit.php b/usr/local/www/services_wol_edit.php
index 73f222b..084de1a 100755
--- a/usr/local/www/services_wol_edit.php
+++ b/usr/local/www/services_wol_edit.php
@@ -58,6 +58,9 @@ if ($_POST) {
$reqdfieldsn = explode(",", "Interface,MAC address");
do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ /* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
+ $_POST['mac'] = strtolower(str_replace("-", ":", $_POST['mac']));
if (($_POST['mac'] && !is_macaddr($_POST['mac']))) {
$input_errors[] = "A valid MAC address must be specified.";
OpenPOWER on IntegriCloud