From: Michael Tremer Date: Sun, 5 Nov 2023 17:34:29 +0000 (+0000) Subject: compress: Be less verbose when walking through the file system X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8781fab8ef6098cce22bf218964f6588074953af;hp=b9a1d857a23eb2b557bb59bf561579df73968e03;p=pakfire.git compress: Be less verbose when walking through the file system Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/compress.c b/src/libpakfire/compress.c index c9ebce24..3de0b937 100644 --- a/src/libpakfire/compress.c +++ b/src/libpakfire/compress.c @@ -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);