From: Chris B. <buc...@us...> - 2012-03-16 19:07:56
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv11501 Modified Files: cimXmlRequest.c ChangeLog NEWS Log Message: [ 3506306 ] Fix count for InvokeMethod requests Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.665 retrieving revision 1.666 diff -u -d -r1.665 -r1.666 --- NEWS 15 Mar 2012 20:54:03 -0000 1.665 +++ NEWS 16 Mar 2012 19:07:53 -0000 1.666 @@ -56,6 +56,7 @@ - 3499930 Check file repository writes - 3497209 oom panic: out of memory using fsp indprovider - 3504607 CMPIRole Support in brokerUpc +- 3506306 Fix count for InvokeMethod requests Changes in 1.3.13 ================= Index: cimXmlRequest.c =================================================================== RCS file: /cvsroot/sblim/sfcb/cimXmlRequest.c,v retrieving revision 1.66 retrieving revision 1.67 diff -u -d -r1.66 -r1.67 --- cimXmlRequest.c 12 Mar 2012 22:30:52 -0000 1.66 +++ cimXmlRequest.c 16 Mar 2012 19:07:53 -0000 1.67 @@ -1552,7 +1552,7 @@ _SFCB_ENTER(TRACE_CIMXMLPROC, "execQuery"); CMPIObjectPath *path; - ExecQueryReq sreq = BINREQ(OPS_ExecQuery, 4); + ExecQueryReq sreq = BINREQ(OPS_ExecQuery, EQ_REQ_REG_SEGMENTS); int irc, l = 0, err = 0; BinResponseHdr **resp; BinRequestContext binCtx; @@ -2119,7 +2119,7 @@ BinRequestContext binCtx; BinResponseHdr *resp; RespSegments rsegs; - InvokeMethodReq sreq = BINREQ(OPS_InvokeMethod, 5); + InvokeMethodReq sreq = BINREQ(OPS_InvokeMethod, IM_REQ_REG_SEGMENTS); CMPIArgs *in=TrackedCMPIArgs(NULL); XtokParamValue *p; CMPIStatus st = {CMPI_RC_OK, NULL}; @@ -2189,6 +2189,8 @@ _SFCB_TRACE(1, ("--- Provider context gotten")); if (irc == MSG_X_PROVIDER) { + fprintf(stderr, "cimXmlRequest: before invokeProvider, ctx.role is \"%s\"\n", ctx->role); + RespSegments rs; resp = invokeProvider(&binCtx); closeProviderContext(&binCtx); Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.743 retrieving revision 1.744 diff -u -d -r1.743 -r1.744 --- ChangeLog 15 Mar 2012 20:54:03 -0000 1.743 +++ ChangeLog 16 Mar 2012 19:07:53 -0000 1.744 @@ -1,3 +1,8 @@ +2012-03-16 Chris Buccella <buc...@li...> + + * cimXmlRequest.c: + [ 3506306 ] Fix count for InvokeMethod requests + 2012-03-15 Chris Buccella <buc...@li...> * brokerUpc.c: |