diff options
author | Scott Ullrich <sullrich@sullrich-MacBookPro.local> | 2009-03-09 18:37:21 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@sullrich-MacBookPro.local> | 2009-03-09 18:37:54 -0400 |
commit | 44b0ec8322f230e205ac6a253f83e5539dd4e178 (patch) | |
tree | 126dbe0987f06a4d010d9f574a89058e186226e6 /etc/inc/util.inc | |
parent | 13f6f4155a8409b0396f96a915ce19df5fc17da6 (diff) | |
download | pfsense-44b0ec8322f230e205ac6a253f83e5539dd4e178.zip pfsense-44b0ec8322f230e205ac6a253f83e5539dd4e178.tar.gz |
Return interface names in caps
Diffstat (limited to 'etc/inc/util.inc')
-rw-r--r-- | etc/inc/util.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc index 41cc9de..dd6c517 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -328,7 +328,7 @@ function get_configured_interface_with_descr($only_opt = false, $withdisabled = if($ifdetail['descr'] == "") $iflist[$if] = strtoupper($if); else - $iflist[$if] = $ifdetail['descr']; + $iflist[$if] = strtoupper($ifdetail['descr']); } } |