Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv24189
Modified Files:
ChangeLog NEWS interopProvider.c
Log Message:
[ 3532951 ] Filter creation fails with disable default properties
Index: NEWS
===================================================================
RCS file: /cvsroot/sblim/sfcb/NEWS,v
retrieving revision 1.693
retrieving revision 1.694
diff -u -d -r1.693 -r1.694
--- NEWS 7 Jun 2012 02:56:09 -0000 1.693
+++ NEWS 7 Jun 2012 20:27:13 -0000 1.694
@@ -23,6 +23,7 @@
- 3528096 Error status codes sometimes not propigated for instances
- 3529856 httpProcs limit can be broken
- 3527620 EnumerateClasses does not include qualifiers by default
+- 3532951 Filter creation fails with disable default properties
Changes in 1.3.14
=================
Index: interopProvider.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/interopProvider.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- interopProvider.c 23 May 2012 21:58:55 -0000 1.61
+++ interopProvider.c 7 Jun 2012 20:27:13 -0000 1.62
@@ -1047,14 +1047,14 @@
provide this if the client does not */
CMPIString *sysname=ciLocal->ft->getProperty(ciLocal,"SystemName",&st).value.string;
if (sysname == NULL || sysname->hdl == NULL) {
- char hostName[512];
- hostName[0]=0;
- gethostname(hostName,511); /* should be the same as SystemName of IndicationService */
- CMAddKey(copLocal, "SystemName", hostName, CMPI_chars);
- CMSetProperty(ciLocal,"SystemName",hostName,CMPI_chars);
+ char hostName[512];
+ hostName[0]=0;
+ gethostname(hostName,511); /* should be the same as SystemName of IndicationService */
+ CMAddKey(copLocal, "SystemName", hostName, CMPI_chars);
+ CMSetProperty(ciLocal,"SystemName",hostName,CMPI_chars);
+ CMSetStatus(&st, CMPI_RC_OK);
}
-
for (ql=(char*)lang->hdl,i=0,n=0,m=strlen(ql); i<m; i++) {
if (ql[i]>' ') lng[n++]=ql[i];
if (n>=15) break;
Index: ChangeLog
===================================================================
RCS file: /cvsroot/sblim/sfcb/ChangeLog,v
retrieving revision 1.775
retrieving revision 1.776
diff -u -d -r1.775 -r1.776
--- ChangeLog 7 Jun 2012 02:56:09 -0000 1.775
+++ ChangeLog 7 Jun 2012 20:27:13 -0000 1.776
@@ -1,3 +1,8 @@
+2012-06-07 Michael Chase-Salerno <br...@li...>
+
+ * interopProvider.c:
+ [ 3532951 ] Filter creation fails with disable default properties
+
2012-06-06 Michael Chase-Salerno <br...@li...>
* control.h, indCIMXMLExport.c, sfcb.cfg.pre.in:
|