From 2ab41e9698d495508570facca12efac15555041c Mon Sep 17 00:00:00 2001 From: eric Date: Mon, 9 Feb 2004 19:59:47 +0000 Subject: [PATCH] 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 --- projects/samskivert/src/java/com/samskivert/net/MACUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/net/MACUtil.java b/projects/samskivert/src/java/com/samskivert/net/MACUtil.java index 3ae85a46..c411d70d 100644 --- a/projects/samskivert/src/java/com/samskivert/net/MACUtil.java +++ b/projects/samskivert/src/java/com/samskivert/net/MACUtil.java @@ -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.