From a53a4e673758d38d2120391ce31c5cffaf2b3cb5 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 07 May 2023 05:08:07 -0400 Subject: opk/write: Fix comments --- (limited to 'src') diff --git a/src/opk/write.c b/src/opk/write.c index 2a38f79..2f2d03e 100644 --- a/src/opk/write.c +++ b/src/opk/write.c @@ -74,7 +74,7 @@ opkg_opk_opk_write(struct opkg_opk_opk *opk, const char *file_name) goto out0; } - /* Initialize outer gzip decompressor. */ + /* Initialize outer gzip compressor. */ opk->outer_gzip = opkg_opk_gzip_init_write(opk->file); if (opk->outer_gzip == NULL) { fputs(_("Error: Failed to initialize\n"), stderr); @@ -82,7 +82,7 @@ opkg_opk_opk_write(struct opkg_opk_opk *opk, const char *file_name) goto out1; } - /* Initialize outer ustar unarchiver. */ + /* Initialize outer ustar archiver. */ opk->outer_ustar = opkg_opk_ustar_init(opk->outer_gzip); if (opk->outer_ustar == NULL) { fputs(_("Error: Failed to initialize\n"), stderr); -- cgit v0.9.1