|
From: Chris B. <buc...@us...> - 2012-05-30 21:27:51
|
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 "SFCB - Small Footprint CIM Broker".
The branch, master has been updated
via d42b30ac4e38801e4da2bd0d344160492f5f9990 (commit)
via 57f4d276df135de1f5f1a722c41daac61c315d45 (commit)
from e8a80e2cf2318dde85c75be2e6e0669eee0f9849 (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 d42b30ac4e38801e4da2bd0d344160492f5f9990
Merge: 57f4d27 e8a80e2
Author: buccella <buc...@li...>
Date: Wed May 30 17:28:47 2012 -0400
merge fix
commit 57f4d276df135de1f5f1a722c41daac61c315d45
Author: buccella <buc...@li...>
Date: Wed May 30 17:27:19 2012 -0400
[ 3527620 ] EnumerateClasses does not include qualifiers by default
-----------------------------------------------------------------------
Summary of changes:
diff --git a/ChangeLog b/ChangeLog
index 0d8af75..815912a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-30 Chris Buccella <buc...@li...>
+
+ * cimXmlOps.y:
+ [ 3527620 ] EnumerateClasses does not include qualifiers by default
+
2012-05-25 Dave Heller <hel...@us...>
* extra/sfcb-ps:
diff --git a/NEWS b/NEWS
index 6af9eee..00095db 100644
--- a/NEWS
+++ b/NEWS
@@ -110,6 +110,7 @@ Bugs Fixed:
- 3528074 Improve CMPIInstance Error Codes
- 3528096 Error status codes sometimes not propigated for instances
- 3529856 httpProcs limit can be broken
+- 3527620 EnumerateClasses does not include qualifiers by default
Changes in 1.3.14
=================
diff --git a/cimXmlOps.y b/cimXmlOps.y
index 5cf8e6c..6503bd1 100644
--- a/cimXmlOps.y
+++ b/cimXmlOps.y
@@ -2653,7 +2653,7 @@ enumClasses
$$.op.type = OPS_EnumerateClasses;
$$.op.nameSpace=setCharsMsgSegment($1);
$$.op.className=setCharsMsgSegment(NULL);
- $$.flags = FL_localOnly;
+ $$.flags = FL_localOnly|FL_includeQualifiers;
setRequest(parm,&$$,sizeof(XtokEnumClasses),OPS_EnumerateClasses);
buildEnumClassesRequest(parm);
@@ -2664,7 +2664,7 @@ enumClasses
$$.op.type = OPS_EnumerateClasses;
$$.op.nameSpace=setCharsMsgSegment($1);
$$.op.className=setCharsMsgSegment($2.className);
- $$.flags = ($2.flags & $2.flagsSet) | ((~$2.flagsSet) & FL_localOnly);
+ $$.flags = ($2.flags & $2.flagsSet) | ((~$2.flagsSet) & (FL_localOnly|FL_includeQualifiers));
setRequest(parm,&$$,sizeof(XtokEnumClasses),OPS_EnumerateClasses);
buildEnumClassesRequest(parm);
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|