Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv11517
Modified Files:
ChangeLog NEWS interopProvider.c
Log Message:
[ 3517573 ] Problem with SequenceContext migration
Index: NEWS
===================================================================
RCS file: /cvsroot/sblim/sfcb/NEWS,v
retrieving revision 1.682
retrieving revision 1.683
diff -u -d -r1.682 -r1.683
--- NEWS 13 Apr 2012 17:53:38 -0000 1.682
+++ NEWS 13 Apr 2012 23:48:19 -0000 1.683
@@ -12,6 +12,7 @@
- 3514443 sfcb 1.3.14 compilation error
- 3514627 unsupported sfcb.cfg param - use exit call
- 3516184 commClose close socket when file hndl is null
+- 3517573 Problem with SequenceContext migration
Changes in 1.3.14
=================
Index: interopProvider.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/interopProvider.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- interopProvider.c 29 Mar 2012 15:39:33 -0000 1.58
+++ interopProvider.c 13 Apr 2012 23:48:19 -0000 1.59
@@ -710,19 +710,15 @@
CMPIData isinst=CMGetNext(isenm,NULL);
CMPIData mc=CMGetProperty(isinst.value.inst,"DeliveryRetryAttempts",NULL);
int RIEnabled=mc.value.uint16;
+ mc = CMGetProperty(isinst.value.inst, "Name", NULL);
_SFCB_TRACE(1,("--- checking for cim_listenerdestination"));
op=CMNewObjectPath(broker,"root/interop","cim_listenerdestination",&st);
enm = _broker->bft->enumerateInstances(_broker, ctx, op, NULL, &st);
if(enm) {
- // Get the IndicationService name for SequenceContext migration
- CMPIObjectPath * isop = CMNewObjectPath(_broker, "root/interop", "CIM_IndicationService", NULL);
- CMPIEnumeration * isenm = _broker->bft->enumerateInstances(_broker, ctx, isop, NULL, NULL);
- CMPIData isinst = CMGetNext(isenm, NULL);
- CMPIData mc = CMGetProperty(isinst.value.inst, "Name", NULL);
- CMPIData ld;
// Loop through all the listeners
+ CMPIData ld;
int ldcount=0;
char context[100];
while(enm->ft->hasNext(enm, &st) && (ci=(enm->ft->getNext(enm, &st)).value.inst)) {
Index: ChangeLog
===================================================================
RCS file: /cvsroot/sblim/sfcb/ChangeLog,v
retrieving revision 1.761
retrieving revision 1.762
diff -u -d -r1.761 -r1.762
--- ChangeLog 13 Apr 2012 17:53:38 -0000 1.761
+++ ChangeLog 13 Apr 2012 23:48:19 -0000 1.762
@@ -1,3 +1,8 @@
+2012-04-13 Michael Chase-Salerno <br...@li...>
+
+ * interopProvider.c:
+ [ 3517573 ] Problem with SequenceContext migration
+
2012-04-13 Narasimhma Sharoff <nsh...@us...>
* brokerOs.c, brokerUpc.c, native.h:
@@ -23,8 +28,8 @@
2012-04-05 Narasimha Sharoff <nsh...@us...>
- * control.c:
- [ 3514627 ] unsupported sfcb.cfg param - use exit call
+ * control.c:
+ [ 3514627 ] unsupported sfcb.cfg param - use exit call
2012-04-03 Chris Buccella <buc...@li...>
|