From fbb78d6bbdba6e2f6542c826307e51ad891e9b9f Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 29 Sep 2016 09:08:44 +0930 Subject: [PATCH] Typo staic --- src/usr/local/www/services_dhcp.php | 2 +- src/usr/local/www/services_dhcp_edit.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr/local/www/services_dhcp.php b/src/usr/local/www/services_dhcp.php index 2419b00438..58dec83bcd 100644 --- a/src/usr/local/www/services_dhcp.php +++ b/src/usr/local/www/services_dhcp.php @@ -632,7 +632,7 @@ if ($act == "delpool") { if ($act == "del") { if ($a_maps[$_GET['id']]) { - /* Remove staic ARP entry, if necessary */ + /* Remove static ARP entry, if necessary */ if (isset($a_maps[$_GET['id']]['arp_table_static_entry'])) { mwexec("/usr/sbin/arp -d " . escapeshellarg($a_maps[$_GET['id']]['ipaddr'])); } diff --git a/src/usr/local/www/services_dhcp_edit.php b/src/usr/local/www/services_dhcp_edit.php index 0d9ab287d7..097a660fad 100644 --- a/src/usr/local/www/services_dhcp_edit.php +++ b/src/usr/local/www/services_dhcp_edit.php @@ -362,7 +362,7 @@ if ($_POST) { } } - /* Configure staic ARP entry, or remove ARP entry if this host is dynamic. See https://redmine.pfsense.org/issues/6821 */ + /* Configure static ARP entry, or remove ARP entry if this host is dynamic. See https://redmine.pfsense.org/issues/6821 */ if ($mapent['arp_table_static_entry']) { mwexec("/usr/sbin/arp -S " . escapeshellarg($mapent['ipaddr']) . " " . escapeshellarg($mapent['mac'])); } else {