diff options
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) |