]> git.ipfire.org Git - people/ms/pakfire.git/commitdiff
compress: Be less verbose when walking through the file system
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 5 Nov 2023 17:34:29 +0000 (17:34 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 5 Nov 2023 17:34:29 +0000 (17:34 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/compress.c

index c9ebce24859bdcaeb8f897970b3f21d76d91c5b6..3de0b93734ce1079ffdfd40f5b48d0fedb6b47b8 100644 (file)
@@ -529,7 +529,6 @@ int pakfire_walk(struct pakfire_ctx* ctx, struct archive* archive,
                pakfire_walk_callback callback, pakfire_walk_filter_callback filter_callback,
                void* p) {
        struct archive_entry* entry = NULL;
-       const char* path = NULL;
        int r;
 
        // Walk through the archive
@@ -551,10 +550,6 @@ int pakfire_walk(struct pakfire_ctx* ctx, struct archive* archive,
                                return r;
                }
 
-               path = archive_entry_pathname(entry);
-
-               CTX_DEBUG(ctx, "Walking through %s...\n", path);
-
                // Call the filter callback before we call the actual callback
                if (filter_callback) {
                        r = filter_callback(ctx, archive, entry, p);