macloader: Decapitalize wisol MAC addresses

* These should be lowercase, otherwise detection will fail

Change-Id: Ibdc446a8f9c58bc9b17b8e9c6cfd5f4894f7ecff
Signed-off-by: Paul Keith <javelinanddart@aidenswann.com>
This commit is contained in:
Paul Keith 2017-02-07 14:27:33 -06:00
parent 6d31bae512
commit 6e35157bd6

View file

@ -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;
}