Do not bridge in-band ipmi requests when -m <local_addr> is specified without -t <target_address> on the command line. Prior to this change -m <local_addr> would always attempt to bride the request becaues the default target_address was being set to 0x20 instead of zero. ID: 3605313

This commit is contained in:
Jim Mankovich 2013-03-05 18:49:09 +00:00
parent 108dc8aa0b
commit db56cc3f86

View File

@ -385,5 +385,5 @@ struct ipmi_intf ipmi_open_intf = {
close: ipmi_openipmi_close,
sendrecv: ipmi_openipmi_send_cmd,
my_addr: IPMI_BMC_SLAVE_ADDR,
target_addr: IPMI_BMC_SLAVE_ADDR,
target_addr: 0, /* init so -m local_addr does not cause bridging */
};