]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
sw-collector: Use correct variable to report failure to open history file
authorTobias Brunner <tobias@strongswan.org>
Tue, 8 Aug 2017 13:29:41 +0000 (15:29 +0200)
committerTobias Brunner <tobias@strongswan.org>
Tue, 8 Aug 2017 13:29:41 +0000 (15:29 +0200)
src/sw-collector/sw-collector.c

index e08f948687099eba46b9ada3d08261ef11761242..19ccdd1d023e3c91754109b468d0c180a90cdfc5 100644 (file)
@@ -242,8 +242,8 @@ static int extract_history(sw_collector_info_t *info, sw_collector_db_t *db)
        }
 
        /* open history file for reading */
-       history_path= lib->settings->get_str(lib->settings, "%s.history", NULL,
-                                                                                lib->ns);
+       history_path = lib->settings->get_str(lib->settings, "%s.history", NULL,
+                                                                                 lib->ns);
        if (!history_path)
        {
                fprintf(stderr, "sw-collector.history path not set.\n");
@@ -252,7 +252,8 @@ static int extract_history(sw_collector_info_t *info, sw_collector_db_t *db)
        h = chunk_map(history_path, FALSE);
        if (!h)
        {
-               fprintf(stderr, "opening '%s' failed: %s", history, strerror(errno));
+               fprintf(stderr, "opening '%s' failed: %s", history_path,
+                               strerror(errno));
                return EXIT_FAILURE;
        }
        history_chunk = *h;
@@ -585,7 +586,7 @@ static int migrate(sw_collector_info_t *info, sw_collector_db_t *db)
        dpkg->destroy(dpkg);
 
        DBG1(DBG_IMC, "migrated %d sw identifier records", count);
+
        return status;
 }