From: Narasimha S. <nsh...@us...> - 2011-02-22 19:04:40
|
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 "SFCC - Small Footprint CIM Client". The branch, master has been updated via 627f38949536e3acb43063d9f8e321811e0683e2 (commit) from 71937c7660f2398bb97c2e1b9a83ae7e24f49825 (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 627f38949536e3acb43063d9f8e321811e0683e2 Author: Narasimha Sharoff <nsh...@us...> Date: Tue Feb 22 11:03:12 2011 -0800 [2793377] Missing includes ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index ec0de89..a2d477b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-02-22 Narasimha Sharoff <nsh...@us...> + + * cimc/cimcclient.c, TEST/show.c, TEST/test.c, TEST/test_gc.c + [ 2793377 ] Missing includes + (patch to add <string.h> in cimcclient.c by Miska, miska_tx) + 2011-01-13 Chris Buccella <buc...@li...> * backend/cimxml/cimXmlParser.c: diff --git a/NEWS b/NEWS index 9d173f7..6a6d221 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,7 @@ Bugs: - 3043282: XML gen for embedded instances for invokeMethod is incorrect - 3059060: 'struct _CIMCArgsFT' not defined in cimc/cimcft.h - 2348900: Concurrency issue when parsing responses +- 2793377: Missing includes Changes in 2.2.1 ================ diff --git a/TEST/show.c b/TEST/show.c index 0ae7d86..0621133 100755 --- a/TEST/show.c +++ b/TEST/show.c @@ -20,6 +20,7 @@ #include <cmci.h> #include <native.h> #include <unistd.h> +#include <stdlib.h> #include <string.h> #include "show.h" diff --git a/TEST/test.c b/TEST/test.c index 6efc2aa..5f650e5 100755 --- a/TEST/test.c +++ b/TEST/test.c @@ -20,6 +20,7 @@ #include <cmci.h> #include <native.h> #include <unistd.h> +#include <stdlib.h> #include <string.h> static char * _HOSTNAME; diff --git a/TEST/test_gc.c b/TEST/test_gc.c index b94f10b..c732513 100755 --- a/TEST/test_gc.c +++ b/TEST/test_gc.c @@ -46,7 +46,7 @@ int main() cim_host_userid, cim_host_passwd, &status); if (cc == NULL || status.rc != CMPI_RC_OK) { - fprintf (stderr, "Connect failed: client handle = %x, status.rc = %d\n", cc, status.rc); + fprintf (stderr, "Connect failed: client handle = %p, status.rc = %d\n", cc, status.rc); return -1; } diff --git a/cimc/cimcclient.c b/cimc/cimcclient.c index 9f29a24..66cf3a2 100644 --- a/cimc/cimcclient.c +++ b/cimc/cimcclient.c @@ -24,6 +24,7 @@ #include <stdio.h> #include <stdlib.h> #include <dlfcn.h> +#include <string.h> /* * Canonical CIM C API entry points hooks/post-receive -- SFCC - Small Footprint CIM Client |