|
From: Chris B. <buc...@us...> - 2012-10-04 17:39:43
|
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 a49f81e7193321c88d28fd1b5ae515ee8615b7c6 (commit)
from d99011361b076194cc55b0f9289684d2ebd8b800 (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 a49f81e7193321c88d28fd1b5ae515ee8615b7c6
Author: buccella <buc...@li...>
Date: Thu Oct 4 13:40:32 2012 -0400
[ 3573507 ] CreateInstance for IndicationFilter doesn't accept DMTF:CQL
-----------------------------------------------------------------------
Summary of changes:
diff --git a/NEWS b/NEWS
index 7f2d1d6..59404ac 100644
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,7 @@ Bugs fixed:
- 3546279 Core dump in providerDrv on Qualifier not found
- 3564757 stageschema.sh should detect errors in sfcbrepos
- 3567083 configure should fail if sfcUtil.so not found
+- 3573507 CreateInstance for IndicationFilter doesn't accept DMTF:CQL
Changes in 1.4.2
================
diff --git a/interopProvider.c b/interopProvider.c
index 548fabc..463300f 100644
--- a/interopProvider.c
+++ b/interopProvider.c
@@ -1257,7 +1257,8 @@ InteropProviderCreateInstance(CMPIInstanceMI * mi,
_SFCB_TRACE(2, ("--- CIM query language %s %s", lang->hdl, lng));
if (strcasecmp(lng, "wql") && strcasecmp(lng, "cql")
- && strcasecmp(lng, "cim:cql")) {
+ && strcasecmp(lng, "cim:cql")
+ && strcasecmp(lng, "dmtf:cql")) {
setStatus(&st, CMPI_RC_ERR_QUERY_LANGUAGE_NOT_SUPPORTED, NULL);
_SFCB_RETURN(st);
}
diff --git a/queryStatement.c b/queryStatement.c
index e56ae4a..09a5d4f 100644
--- a/queryStatement.c
+++ b/queryStatement.c
@@ -286,7 +286,8 @@ parseQuery(int mode, const char *query, const char *lang, const char *sns,
if (strcasecmp(lang, "wql") == 0)
ctl.statement->lang = QL_WQL;
else if (strcasecmp(lang, "cql") == 0
- || strcasecmp(lang, "cim:cql") == 0) {
+ || strcasecmp(lang, "cim:cql") == 0
+ || strcasecmp(lang, "dmtf:cql") == 0) {
ctl.statement->lang = QL_CQL;
} else
ctl.statement->lang = 0;
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|