ID: 143 - Reversed 'channel authcap' capabilities

Commit fixes reversed IPMIv1.5/2.0 'channel authcap' capabilities
in 'include/ipmitool/ipmi_channel.h'.

Commit for Rob Swindell
This commit is contained in:
Zdenek Styblik 2013-06-10 04:05:54 +00:00
parent 63ba1cc610
commit e30f3726a6

View File

@ -87,11 +87,11 @@ struct get_channel_auth_cap_rsp {
#endif #endif
#if WORDS_BIGENDIAN #if WORDS_BIGENDIAN
uint8_t __reserved3 : 6; uint8_t __reserved3 : 6;
uint8_t ipmiv15_support : 1; /* channel supports IPMI v1.5 connections */
uint8_t ipmiv20_support : 1; /* channel supports IPMI v2.0 connections */ uint8_t ipmiv20_support : 1; /* channel supports IPMI v2.0 connections */
uint8_t ipmiv15_support : 1; /* channel supports IPMI v1.5 connections */
#else #else
uint8_t ipmiv20_support : 1; /* channel supports IPMI v2.0 connections */
uint8_t ipmiv15_support : 1; /* channel supports IPMI v1.5 connections */ uint8_t ipmiv15_support : 1; /* channel supports IPMI v1.5 connections */
uint8_t ipmiv20_support : 1; /* channel supports IPMI v2.0 connections */
uint8_t __reserved3 : 6; uint8_t __reserved3 : 6;
#endif #endif
uint8_t oem_id[3]; /* IANA enterprise number for auth type */ uint8_t oem_id[3]; /* IANA enterprise number for auth type */