Ok, well this never seemed like it was a problem as everything seems to
return upper case, but lets just force it to uppercase anyway in case the wacky tools we are using change in the future. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1395 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: MACUtil.java,v 1.7 2004/02/09 18:36:48 eric Exp $
|
// $Id: MACUtil.java,v 1.8 2004/02/09 19:59:47 eric Exp $
|
||||||
|
|
||||||
package com.samskivert.net;
|
package com.samskivert.net;
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ public class MACUtil
|
|||||||
|
|
||||||
ArrayList list = new ArrayList();
|
ArrayList list = new ArrayList();
|
||||||
while (m.find()) {
|
while (m.find()) {
|
||||||
String mac = m.group(1);
|
String mac = m.group(1).toUpperCase();
|
||||||
|
|
||||||
// What fun, we have to explicitly skip PPP adaptor addresses
|
// What fun, we have to explicitly skip PPP adaptor addresses
|
||||||
// since they all start with 444553 and tend to not be unique.
|
// since they all start with 444553 and tend to not be unique.
|
||||||
|
|||||||
Reference in New Issue
Block a user