diff options
Diffstat (limited to 'src/opk')
-rw-r--r-- | src/opk/write.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |