mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-11 19:17:22 +00:00
fix impi -> ipmi typo,
add config.h so WORDS_BIGENDIAN is defined on solaris/sparc
This commit is contained in:
parent
e8170fd6b6
commit
a6793b9430
@ -37,6 +37,9 @@
|
|||||||
#ifndef IPMI_CHANNEL_H
|
#ifndef IPMI_CHANNEL_H
|
||||||
#define IPMI_CHANNEL_H
|
#define IPMI_CHANNEL_H
|
||||||
|
|
||||||
|
#if HAVE_CONFIG_H
|
||||||
|
# include <config.h>
|
||||||
|
#endif
|
||||||
#include <ipmitool/ipmi.h>
|
#include <ipmitool/ipmi.h>
|
||||||
|
|
||||||
#define IPMI_GET_CHANNEL_AUTH_CAP 0x38
|
#define IPMI_GET_CHANNEL_AUTH_CAP 0x38
|
||||||
|
@ -101,12 +101,12 @@ static const struct valstr ipmi_channel_medium_vals[] = {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* impi_1_5_authtypes
|
* ipmi_1_5_authtypes
|
||||||
*
|
*
|
||||||
* Create a string describing the supported authentication types as
|
* Create a string describing the supported authentication types as
|
||||||
* specificed by the parameter n
|
* specificed by the parameter n
|
||||||
*/
|
*/
|
||||||
const char * impi_1_5_authtypes(unsigned char n)
|
const char * ipmi_1_5_authtypes(unsigned char n)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
static char supportedTypes[128];
|
static char supportedTypes[128];
|
||||||
@ -178,7 +178,7 @@ void ipmi_get_channel_auth_cap(struct ipmi_intf * intf,
|
|||||||
printf("Channel number : %d\n",
|
printf("Channel number : %d\n",
|
||||||
auth_cap.channel_number);
|
auth_cap.channel_number);
|
||||||
printf("IPMI v1.5 auth types : %s\n",
|
printf("IPMI v1.5 auth types : %s\n",
|
||||||
impi_1_5_authtypes(auth_cap.enabled_auth_types));
|
ipmi_1_5_authtypes(auth_cap.enabled_auth_types));
|
||||||
|
|
||||||
if (auth_cap.v20_data_available)
|
if (auth_cap.v20_data_available)
|
||||||
printf("KG status : %s\n",
|
printf("KG status : %s\n",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user