From: Chris B. <buc...@us...> - 2011-08-04 21:43:39
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 3146c89ef17df96cd3e4938a23216334cef7811b (commit) from 9dd74e2e9a9e94ac555ee8223c96889a0a068a3e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3146c89ef17df96cd3e4938a23216334cef7811b Author: buccella <buc...@li...> Date: Thu Aug 4 17:43:18 2011 -0400 [ 3386391 ] HOST_NAME_MAX undefined ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index acea2ce..429e3f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-04 Chris Buccella <buc...@li...> + + * cimXmlGen.c: + [ 3386391 ] HOST_NAME_MAX undefined + 2011-07-25 Narasimha Sharoff <nsh...@us...> * providerDrv.c: [ 3101157 ] Failed to enable provider timing analysis with SfcbLocal diff --git a/NEWS b/NEWS index b8fca9c..c4f3be4 100644 --- a/NEWS +++ b/NEWS @@ -73,6 +73,13 @@ Everything in 1.3.10, plus: - 3104761 cimRsRequest.h missing from make-dist tarball - 3107553 Remove Large Volume Support +Changes in 1.3.13 +================= + +Bugs Fixed: + +- [ 3386391 ] HOST_NAME_MAX undefined + Changes in 1.3.12 ================= diff --git a/cimXmlGen.c b/cimXmlGen.c index 7259973..428b368 100644 --- a/cimXmlGen.c +++ b/cimXmlGen.c @@ -41,6 +41,10 @@ #define SFCB_ASM(x) #endif +#ifndef HOST_NAME_MAX +#define HOST_NAME_MAX 256 +#endif + extern const char *instGetClassName(CMPIInstance *ci); extern CMPIData opGetKeyCharsAt(CMPIObjectPath * cop, unsigned int index, const char **name, CMPIStatus *rc); hooks/post-receive -- SFCB - Small Footprint CIM Broker |