mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-14 12:37:22 +00:00
Fixed PICMG (ATCA) extension verification
- BCD encoded value "major" and "minor" fields were reversed
This commit is contained in:
parent
3b08cc6002
commit
b1cef77bcf
@ -152,7 +152,7 @@ ipmi_openipmi_open(struct ipmi_intf * intf)
|
|||||||
){
|
){
|
||||||
version_accepted = 1;
|
version_accepted = 1;
|
||||||
lprintf(LOG_DEBUG, "Discovered PICMG Extension %d.%d",
|
lprintf(LOG_DEBUG, "Discovered PICMG Extension %d.%d",
|
||||||
(rsp->data[1] >> 4), (rsp->data[1] & 0x0f));
|
(rsp->data[1] & 0x0f),(rsp->data[1] >> 4) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user