ID: 3592773 - # ipmitool sdr info; prints incorrect info

Commit fixes output printed by # ipmitool sdr info; about 'SDR Repository Alloc
info supported' due to incorrect member name; probably because of copy-paste
error.
This commit is contained in:
Zdenek Styblik 2012-12-05 11:02:38 +00:00
parent 99e4ac0399
commit b4754b5edb

View File

@ -4184,7 +4184,8 @@ ipmi_sdr_print_info(struct ipmi_intf *intf)
sdr_repository_info. sdr_repository_info.
reserve_sdr_repository_supported ? "yes" : "no"); reserve_sdr_repository_supported ? "yes" : "no");
printf("SDR Repository Alloc info supported : %s\n", printf("SDR Repository Alloc info supported : %s\n",
sdr_repository_info.delete_sdr_supported ? "yes" : "no"); sdr_repository_info.
get_sdr_repository_allo_info_supported ? "yes" : "no");
return 0; return 0;
} }