From 383370e40fba31712de90c426e2a7b3fb29d1358 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 16 May 2012 20:18:49 +0000 Subject: [PATCH] Have slpdiscover be case insensitive in terms of known mac addresses git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12748 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/slpdiscover.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/slpdiscover.pm b/xCAT-server/lib/xcat/plugins/slpdiscover.pm index 9e6ec7d62..730c71c3f 100644 --- a/xCAT-server/lib/xcat/plugins/slpdiscover.pm +++ b/xCAT-server/lib/xcat/plugins/slpdiscover.pm @@ -116,7 +116,7 @@ sub process_request { if ($addr =~ /^fe80/) { #Link local address requires scope index $addr .= "%".$data->{scopeid}; } - if ($machash{$nodename} =~ /$mac/) { #ignore prospects already known to mac table + if ($machash{$nodename} =~ /$mac/i) { #ignore prospects already known to mac table next; } sendmsg(":Found ".$nodename." which seems to be ".$data->{SrvType}." at address $addr",$callback);