From 6e35157bd6dbcdf3e50ecc7fc05eccca485635dc Mon Sep 17 00:00:00 2001 From: Paul Keith Date: Tue, 7 Feb 2017 14:27:33 -0600 Subject: [PATCH] macloader: Decapitalize wisol MAC addresses * These should be lowercase, otherwise detection will fail Change-Id: Ibdc446a8f9c58bc9b17b8e9c6cfd5f4894f7ecff Signed-off-by: Paul Keith --- macloader/macloader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macloader/macloader.c b/macloader/macloader.c index 72b103c1..e436900b 100644 --- a/macloader/macloader.c +++ b/macloader/macloader.c @@ -234,8 +234,8 @@ int main() { } /* wisol */ - if (strncasecmp(mac_addr_half, "48:5A:3F", 9) == 0 || - strncasecmp(mac_addr_half, "70:2C:1F", 9) == 0) { + if (strncasecmp(mac_addr_half, "48:5a:3f", 9) == 0 || + strncasecmp(mac_addr_half, "70:2c:1f", 9) == 0) { type = WISOL; }