mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-11 02:57:22 +00:00
fix display of auth enables
This commit is contained in:
parent
89199b49f3
commit
eab4dfe679
@ -140,9 +140,9 @@ ipmi_get_channel_auth_cap(struct ipmi_intf * intf,
|
|||||||
(auth_cap.kg_status) ? "non-zero" : "default (all zeroes)");
|
(auth_cap.kg_status) ? "non-zero" : "default (all zeroes)");
|
||||||
|
|
||||||
printf("Per message authentication : %sabled\n",
|
printf("Per message authentication : %sabled\n",
|
||||||
(auth_cap.per_message_auth) ? "en" : "dis");
|
(auth_cap.per_message_auth) ? "dis" : "en");
|
||||||
printf("User level authentication : %sabled\n",
|
printf("User level authentication : %sabled\n",
|
||||||
(auth_cap.user_level_auth) ? "en" : "dis");
|
(auth_cap.user_level_auth) ? "dis" : "en");
|
||||||
|
|
||||||
printf("Non-null user names exist : %s\n",
|
printf("Non-null user names exist : %s\n",
|
||||||
(auth_cap.non_null_usernames) ? "yes" : "no");
|
(auth_cap.non_null_usernames) ? "yes" : "no");
|
||||||
@ -858,4 +858,3 @@ ipmi_channel_main(struct ipmi_intf * intf, int argc, char ** argv)
|
|||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user