Skip to content
Snippets Groups Projects
Commit b0fa54ac authored by Leah Rowe's avatar Leah Rowe
Browse files

util/nvmutil: fix faulty zeroes-mac-address check

it was resetting the total for each nibble. absolute
epic fail on my part.

fixed now.
parent 0c79a9a8
Branches
Tags
No related merge requests found
......@@ -205,7 +205,7 @@ parseMacAddress(const char *strMac, uint16_t *mac)
int i, nib, byte;
uint8_t val8;
uint16_t val16;
uint64_t total;
uint64_t total = 0;
if (strnlen(strMac, 20) != 17)
return -1;
......@@ -215,7 +215,7 @@ parseMacAddress(const char *strMac, uint16_t *mac)
if (strMac[i + 2] != ':')
return -1;
byte = i / 3;
for (total = 0, nib = 0; nib < 2; nib++, total += val8) {
for (nib = 0; nib < 2; nib++, total += val8) {
if ((val8 = hextonum(strMac[i + nib])) > 15)
return -1;
if ((byte == 0) && (nib == 1))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment