8525fdd2 | 13-Aug-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
Added ``ID#264 - incorrect array index in get_lan_param_select()'' to ChangeLog |
f8cecaa7 | 12-Aug-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 264 - incorrect array index in get_lan_param_select()
Commit fixes incorrect array index in get_lan_param_select(). The param value matches the cmd in the lan_param struct, but it's not the same
ID: 264 - incorrect array index in get_lan_param_select()
Commit fixes incorrect array index in get_lan_param_select(). The param value matches the cmd in the lan_param struct, but it's not the same as the ipmi_lan_params[] array index. Here is an example of what I mean. This problem becomes apparent with the OEM extensions which use values 192+.
Commit for Jeff Bastian
show more ...
|
a771107c | 12-Aug-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
Added ``ID#212 - 'lib/ipmi_dcmi.c' - possible int *flow'' to ChangeLog |
afd01570 | 12-Aug-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 212 - 'lib/ipmi_dcmi.c' - possible int *flow
Commit replaces strtol() calls with appropriate str2*() ones in order to prevent possible integer *flow via user input. |
bfba2f83 | 12-Aug-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 3528308 - 'lib/ipmi_hpmfwupg.c' - possible int *flow
Commit replaces atoi() call with str2int() and puts a limit on accepted values for Component ID to <0..7>. |
8e94374c | 09-Aug-2013 |
Jim Mankovich <jmank@hp.com> |
Make date format YYYY-MM-DD |
ced5794e | 08-Aug-2013 |
Jim Mankovich <jmank@hp.com> |
Revision should be 1.8.13rc0 at this point |
a298d2e7 | 08-Aug-2013 |
Jim Mankovich <jmank@hp.com> |
Documentation, version, and admin changes in prep for 1.8.13 release |
2d71d428 | 25-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Check return value of fread() in 'lib/ipmi_hpmfwupg.c'.
Commit for Dan Gora |
2e5fbc87 | 24-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Fixed some printf() formatting warnings in 'lib/ipmi_fru.c'.
Commit for Dan Gora |
8b7969a4 | 24-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Changes to ipmi_ekanalyzer_fru_file2structure() in order to get rid off warnings.
Commit for Dan Gora |
04ba23bc | 24-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Changes to ipmi_ek_display_board_info_area() in order to get rid off warnings.
Commit for Dan Gora |
977c587f | 24-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Commit makes small changes to ipmi_ek_display_product_info_area() in order to get rid off warnings. |
dd377108 | 24-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Commit is a small re-work of ipmi_ek_display_chassis_info_area() (not limited) to get rid off warnings. |
4aea72e4 | 24-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Commit is a re-work of ipmi_ek_display_fru_header_detail() (not limited to) to get rid off warnings. |
39bcb37d | 23-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 104 'src/ipmishell.c' - possible int *flow
Commit replaces atoi() and strtol() calls in 'src/ipmishell.c' in order to properly handle user input. |
77707393 | 22-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
'src/plugins/imb/imbapi.c' - don't cast NULL to int, ever!!! |
2ac947f6 | 22-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
'lib/ipmi_dcmi.c' - return (-1) as the rest of the function does and don't return NULL. |
c94c7a5c | 21-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Fixed silly error where the return from fseek was compared to (unsigned int) NULL, which makes no sense at all.
Commit for Dan Gora |
4fdbe5bb | 21-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 263 - ipmi_ek_display_fru_header() - file descriptor leak
Commit fixes small file descriptor leak which happens when error occurs. |
c49bc06c | 21-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
Commit is practically a re-work of ipmi_ek_display_fru_header() in order to eliminate warnings. Check those return values!
Commit for Dan Gora |
55524327 | 21-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 65 - Fixes for configure.in for cross compilation
NULL should never be cast to an int.
Commit for Dan Gora |
85ff7dc4 | 17-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 262 - 'set' segfaults when no IPMI inf present
Commit fixes segfault in 'set' sub-command when no IPMI interface is present/available. This is caused by 'intf->session' being used without check
ID: 262 - 'set' segfaults when no IPMI inf present
Commit fixes segfault in 'set' sub-command when no IPMI interface is present/available. This is caused by 'intf->session' being used without check whether it's NULL or not which leads to NULL reference in printf().
show more ...
|
8c5013b0 | 17-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 101 - 'lib/ipmi_sol.c' - possible int *flow
Fix function name - str2uint() -> str2uchar(). |
ea8ce151 | 17-Jul-2013 |
Zdenek Styblik <zdenek.styblik@gmail.com> |
ID: 70 - Fixes and updates for ipmitool hpm
Fixed the hpm upgstatus command to print the results of the command without having to specify -v to enable verbose operation.
It's not clear that this co
ID: 70 - Fixes and updates for ipmitool hpm
Fixed the hpm upgstatus command to print the results of the command without having to specify -v to enable verbose operation.
It's not clear that this command is even useful to the user at all. Perhaps it should be removed entirely.
Commit for Dan Gora
show more ...
|