You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by bp...@apache.org on 2015/10/05 10:50:56 UTC

celix git commit: CELIX-267: Fix filename

Repository: celix
Updated Branches:
  refs/heads/develop d632500e7 -> 5ff51e8e8


CELIX-267: Fix filename


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/5ff51e8e
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/5ff51e8e
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/5ff51e8e

Branch: refs/heads/develop
Commit: 5ff51e8e8aa0cbe40d84d9a5228e8ba29c2c58f8
Parents: d632500
Author: Bjoern Petri <bp...@apache.org>
Authored: Mon Oct 5 10:50:30 2015 +0200
Committer: Bjoern Petri <bp...@apache.org>
Committed: Mon Oct 5 10:50:30 2015 +0200

----------------------------------------------------------------------
 framework/private/src/bundle_archive.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/5ff51e8e/framework/private/src/bundle_archive.c
----------------------------------------------------------------------
diff --git a/framework/private/src/bundle_archive.c b/framework/private/src/bundle_archive.c
index 6a9407a..a676d6a 100644
--- a/framework/private/src/bundle_archive.c
+++ b/framework/private/src/bundle_archive.c
@@ -408,7 +408,7 @@ celix_status_t bundleArchive_setRefreshCount(bundle_archive_pt archive) {
 	celix_status_t status = CELIX_SUCCESS;
 	char refreshCounter[512];
 
-	snprintf(refreshCounter, sizeof(refreshCounter), "%s/bundle.state", archive->archiveRoot);
+	snprintf(refreshCounter, sizeof(refreshCounter), "%s/refresh.counter", archive->archiveRoot);
 
 	refreshCounterFile = fopen(refreshCounter, "w");
     if (refreshCounterFile == NULL) {