|
From: Zdenek S. <st...@us...> - 2016-01-20 06:10:16
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "ipmitool".
The branch, master has been updated
via 9020b67347f46554009591ae91e4fa8875c65dfa (commit)
from f62b924cb405aa114bba7d4651c5eba7cbc97ca6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9020b67347f46554009591ae91e4fa8875c65dfa
Author: Dmitry Bazhenov <baz...@gm...>
Date: Tue Jan 12 21:16:37 2016 +0500
ID:411 - Fix HPM.2 revision check for R1.1 and subsequent specification revisions.
diff --git a/lib/hpm2.c b/lib/hpm2.c
index 6420629..f13be07 100644
--- a/lib/hpm2.c
+++ b/lib/hpm2.c
@@ -128,7 +128,7 @@ int hpm2_get_capabilities(struct ipmi_intf * intf,
#endif
/* check HPM.2 revision */
- if (caps->hpm2_revision_id != HPM2_REVISION) {
+ if (caps->hpm2_revision_id == 0) {
lprintf(LOG_NOTICE, "Bad HPM.2 revision, rev=%d",
caps->hpm2_revision_id);
return -1;
-----------------------------------------------------------------------
Summary of changes:
lib/hpm2.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
ipmitool
|