diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 13:34:00 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 13:34:00 +0100 |
commit | 0bbe5815fd94129767ec0072d1d7e5e7eff1a6e7 (patch) | |
tree | 1b44e7d6fd8446f8c3e2fc8f1ef3af281d590fab /lib/lanplus/lanplus.c | |
parent | 9641459c047738b492ab6002a9d38d286e237721 (diff) | |
parent | 5ad8be875662e799ca8739e267b4879bb281a048 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'lib/lanplus/lanplus.c')
-rw-r--r-- | lib/lanplus/lanplus.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/lanplus/lanplus.c b/lib/lanplus/lanplus.c index 664eea6..781c768 100644 --- a/lib/lanplus/lanplus.c +++ b/lib/lanplus/lanplus.c @@ -881,7 +881,10 @@ ipmi_lan_poll_recv(struct ipmi_intf * intf) lprintf(LOG_DEBUG+2, "IPMI Request Match found"); if ( intf->target_addr != intf->my_addr && bridgePossible && rsp->data_len && - rsp->payload.ipmi_response.cmd == 0x34 ) + rsp->payload.ipmi_response.cmd == 0x34 && + (rsp->payload.ipmi_response.netfn == 0x06 || + rsp->payload.ipmi_response.netfn == 0x07) && + rsp->payload.ipmi_response.rs_lun == 0 ) { /* Check completion code */ if (rsp->data[offset-1] == 0) |