Here are the two small patches I want to apply before 1.8.9 is released
(the patch names come from our internal bug numbers used to track the
problem). I don't expect any discussion of the first will be necessary,
but I want to make sure the change in the 2nd patch is ok with everyone.
CR6480372.patch :
fix a byte ordering problem on SPARC (and other big-endian) machines in
the ipmi_sel_get_time() function
CR6495028.patch :
use LOG_DAEMON instead of LOG_LOCAL4 when ipmievd logs ipmi events.
We made this change b/c customers were not able to see ipmi events using
the default syslog configuration in RHEL and Solaris.
If nobody objects I can go ahead and commit these.
-john.
Index: lib/ipmi_sel.c
===================================================================
RCS file: /cvsroot/ipmitool/ipmitool/lib/ipmi_sel.c,v
retrieving revision 1.67
diff -r1.67 ipmi_sel.c
1638,1639c1638,1639
< timei = BSWAP_32(timei);
< #endif
---
> time = (time_t)(BSWAP_32(timei));
> #else
1640a1641
> #endif
Index: lib/log.c
===================================================================
RCS file: /cvsroot/ipmitool/ipmitool/lib/log.c,v
retrieving revision 1.6
diff -r1.6 log.c
123c123
< openlog(logpriv->name, LOG_CONS, LOG_LOCAL4);
---
> openlog(logpriv->name, LOG_CONS, LOG_DAEMON);
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel