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 7c76b1030ba94cc0b09184130eb7700ce59b54d9 (commit)
from 9dc17f55fdb6f60fadb2933bbf04f3704b4439dd (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 7c76b1030ba94cc0b09184130eb7700ce59b54d9
Author: buccella <buc...@li...>
Date: Thu Mar 29 22:09:31 2012 -0400
[ 3487419 ] TestIndication Provider Does Not Enable Correctly
-----------------------------------------------------------------------
Summary of changes:
diff --git a/ChangeLog b/ChangeLog
index eaffa80..697c5db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2012-03-29 Chris Buccella <buc...@li...>
+ * test/TestProviders/cmpiTestIndicationProvider.c:
+ [ 3487419 ] TestIndication Provider Does Not Enable Correctly
+
* providerDrv.c:
[ 3408288 ] Safer Signal Handlers
diff --git a/NEWS b/NEWS
index 48918d8..8a794f2 100644
--- a/NEWS
+++ b/NEWS
@@ -126,6 +126,7 @@ Bugs Fixed:
- 3510458 Malformed XML response to GetProperty
- 3510456 GetProperty calls not passing keys to providers
- 3408288 Safer Signal Handlers
+- 3487419 TestIndication Provider Does Not Enable Correctly
Changes in 1.3.13
=================
diff --git a/test/TestProviders/cmpiTestIndicationProvider.c b/test/TestProviders/cmpiTestIndicationProvider.c
index 3fb872c..0e9a7e5 100644
--- a/test/TestProviders/cmpiTestIndicationProvider.c
+++ b/test/TestProviders/cmpiTestIndicationProvider.c
@@ -116,8 +116,6 @@ CMPIStatus indProvActivateFilter
const CMPISelectExp *exp, const char *clsName,
const CMPIObjectPath * classPath, CMPIBoolean firstActivation) {
fprintf(stderr, "+++ indProvActivateFilter()\n");
- enabled = 1;
- fprintf(stderr, "--- enabled: %d\n", enabled);
CMReturn(CMPI_RC_OK);
}
@@ -126,8 +124,6 @@ CMPIStatus indProvDeActivateFilter
const CMPISelectExp *filter, const char *clsName,
const CMPIObjectPath * classPath, CMPIBoolean lastActivation) {
fprintf(stderr, "+++ indProvDeActivateFilter\n");
- enabled = 0;
- fprintf(stderr, "--- disabled: %d\n", enabled);
CMReturn(CMPI_RC_OK);
}
@@ -135,6 +131,8 @@ CMPIStatus
indProvEnableIndications(CMPIIndicationMI * cThis, const CMPIContext *ctx)
{
fprintf(stderr, "+++ indProvEnableIndications\n");
+ enabled = 1;
+ fprintf(stderr, "--- enabled: %d\n", enabled);
CMReturn(CMPI_RC_OK);
}
@@ -142,6 +140,8 @@ CMPIStatus
indProvDisableIndications(CMPIIndicationMI * cThis, const CMPIContext *ctx)
{
fprintf(stderr, "+++ indProvDisableIndications\n");
+ enabled = 0;
+ fprintf(stderr, "--- disabled: %d\n", enabled);
CMReturn(CMPI_RC_OK);
}
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|