mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-07-02 02:33:37 +00:00
Compare commits
1 Commits
ipmitool
...
IPMITOOL_1
Author | SHA1 | Date | |
---|---|---|---|
cf3d23213c |
@ -1,4 +1,4 @@
|
|||||||
version 1.8.13 2013-09-09
|
version 1.8.13rc0 2013-08-09
|
||||||
* ID: 3611905 - Direct Serial Basic/Terminal Mode Interface drivers
|
* ID: 3611905 - Direct Serial Basic/Terminal Mode Interface drivers
|
||||||
* ID: 3577766 - configure's knobs and switches don't work
|
* ID: 3577766 - configure's knobs and switches don't work
|
||||||
* ID: 3611253 - do not override OS-default values for interfaces
|
* ID: 3611253 - do not override OS-default values for interfaces
|
||||||
@ -126,7 +126,6 @@ version 1.8.13 2013-09-09
|
|||||||
* ID: 99 - 'lib/ipmi_sel.c' - possible int *flow
|
* ID: 99 - 'lib/ipmi_sel.c' - possible int *flow
|
||||||
* ID: 222 - 'lib/ipmi_sdr.c' - a typo 'Not Reading' -> 'No Reading'
|
* ID: 222 - 'lib/ipmi_sdr.c' - a typo 'Not Reading' -> 'No Reading'
|
||||||
* ID: 35 - Script to setup redirection of SNMP to/from BMC
|
* ID: 35 - Script to setup redirection of SNMP to/from BMC
|
||||||
* ID: 273 - Reduce SOL Input buffer size by SOL header size
|
|
||||||
|
|
||||||
|
|
||||||
version 1.8.12 released 2012-08-09
|
version 1.8.12 released 2012-08-09
|
||||||
|
@ -3,7 +3,7 @@ dnl autoconf for ipmitool
|
|||||||
dnl
|
dnl
|
||||||
AC_INIT([src/ipmitool.c])
|
AC_INIT([src/ipmitool.c])
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
AM_INIT_AUTOMAKE([ipmitool], [1.8.13-cvs])
|
AM_INIT_AUTOMAKE([ipmitool], [1.8.13rc0-cvs])
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AC_CONFIG_SRCDIR([src/ipmitool.c])
|
AC_CONFIG_SRCDIR([src/ipmitool.c])
|
||||||
AC_PREREQ(2.50)
|
AC_PREREQ(2.50)
|
||||||
|
@ -1544,10 +1544,6 @@ ipmi_sol_red_pill(struct ipmi_intf * intf, int instance)
|
|||||||
int keepAliveRet = 0;
|
int keepAliveRet = 0;
|
||||||
int retrySol = 0;
|
int retrySol = 0;
|
||||||
|
|
||||||
/* Subtract SOL header from max_inbound_payload_size */
|
|
||||||
if (buffer_size > 4)
|
|
||||||
buffer_size -= 4;
|
|
||||||
|
|
||||||
buffer = (char*)malloc(buffer_size);
|
buffer = (char*)malloc(buffer_size);
|
||||||
if (buffer == NULL) {
|
if (buffer == NULL) {
|
||||||
lprintf(LOG_ERR, "ipmitool: malloc failure");
|
lprintf(LOG_ERR, "ipmitool: malloc failure");
|
||||||
|
Reference in New Issue
Block a user