|
From: Chris B. <buc...@us...> - 2012-06-12 19:12:59
|
Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv1468
Modified Files:
cimcClientSfcbLocal.c cimcClientSfcbLocal.h ChangeLog NEWS
Log Message:
[ 3534659 ] Match SfcbLocal to sfcc update
Index: NEWS
===================================================================
RCS file: /cvsroot/sblim/sfcb/NEWS,v
retrieving revision 1.694
retrieving revision 1.695
diff -u -d -r1.694 -r1.695
--- NEWS 7 Jun 2012 20:27:13 -0000 1.694
+++ NEWS 12 Jun 2012 19:12:57 -0000 1.695
@@ -9,6 +9,7 @@
- 3513390 Enforce LD and subscription limits
- 3527920 RI and http responsecodes
- 3531210 Allow indication delivery timeout tuning
+- 3534659 Match SfcbLocal to sfcc update
Bugs fixed:
Index: cimcClientSfcbLocal.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/cimcClientSfcbLocal.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- cimcClientSfcbLocal.c 29 Mar 2012 14:39:53 -0000 1.46
+++ cimcClientSfcbLocal.c 12 Jun 2012 19:12:56 -0000 1.47
@@ -2019,7 +2019,7 @@
return NewCMPIDateTimeFromChars(utcTime,rc);
}
-ClientEnv* _Create_SfcbLocal_Env(char *id)
+ClientEnv* _Create_SfcbLocal_Env(char *id, unsigned int options, int *rc, char **msg)
{
static ClientEnvFT localFT = {
@@ -2043,6 +2043,7 @@
ClientEnv *env = (ClientEnv*)malloc(sizeof(ClientEnv));
env->hdl=NULL;
env->ft=&localFT;
+ env->options = options;
// enable trace logging
_SFCB_TRACE_INIT();
Index: cimcClientSfcbLocal.h
===================================================================
RCS file: /cvsroot/sblim/sfcb/cimcClientSfcbLocal.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- cimcClientSfcbLocal.h 27 Sep 2007 15:39:42 -0000 1.4
+++ cimcClientSfcbLocal.h 12 Jun 2012 19:12:57 -0000 1.5
@@ -180,6 +180,7 @@
struct _ClientEnv {
void *hdl;
ClientEnvFT *ft;
+ unsigned int options;
};
int sameCMPIObjectPath ( const CMPIObjectPath *cop1, const CMPIObjectPath *cop2);
Index: ChangeLog
===================================================================
RCS file: /cvsroot/sblim/sfcb/ChangeLog,v
retrieving revision 1.776
retrieving revision 1.777
diff -u -d -r1.776 -r1.777
--- ChangeLog 7 Jun 2012 20:27:13 -0000 1.776
+++ ChangeLog 12 Jun 2012 19:12:57 -0000 1.777
@@ -1,3 +1,8 @@
+2012-06-12 Chris Buccella <buc...@li...>
+
+ * cimcClientSfcbLocal.h, cimcClientSfcbLocal.c:
+ [ 3534659 ] Match SfcbLocal to sfcc update
+
2012-06-07 Michael Chase-Salerno <br...@li...>
* interopProvider.c:
|