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:
eric
2004-02-09 19:59:47 +00:00
parent 0d3d3375d3
commit 2ab41e9698
@@ -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;
@@ -45,7 +45,7 @@ public class MACUtil
ArrayList list = new ArrayList();
while (m.find()) {
String mac = m.group(1);
String mac = m.group(1).toUpperCase();
// What fun, we have to explicitly skip PPP adaptor addresses
// since they all start with 444553 and tend to not be unique.