From: Michihiro NAKAJIMA Date: Sun, 18 Dec 2011 12:10:43 +0000 (-0500) Subject: Fix typo. X-Git-Tag: v3.0.2~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91590929f1cbe16bf2e2fc7350b67c779b5a2ebc;p=thirdparty%2Flibarchive.git Fix typo. SVN-Revision: 3936 --- diff --git a/libarchive/test/test_read_format_7zip.c b/libarchive/test/test_read_format_7zip.c index 5fc17af62..a4cc555d0 100644 --- a/libarchive/test/test_read_format_7zip.c +++ b/libarchive/test/test_read_format_7zip.c @@ -142,7 +142,7 @@ test_empty_file() * The header of the 7z archive files is not encdoed. */ static void -text_plain_header(const char *refname) +test_plain_header(const char *refname) { struct archive_entry *ae; struct archive *a; @@ -662,7 +662,7 @@ DEFINE_TEST(test_read_format_7zip) if (ARCHIVE_OK != archive_read_support_filter_bzip2(a)) { skipping("7zip:bzip2 decoding is not supported on this platform"); } else { - text_plain_header("test_read_format_7zip_bzip2.7z"); + test_plain_header("test_read_format_7zip_bzip2.7z"); test_bcj("test_read_format_7zip_bcj_bzip2.7z"); test_bcj("test_read_format_7zip_bcj2_bzip2.7z"); } @@ -671,7 +671,7 @@ DEFINE_TEST(test_read_format_7zip) if (ARCHIVE_OK != archive_read_support_filter_gzip(a)) { skipping("7zip:deflate decoding is not supported on this platform"); } else { - text_plain_header("test_read_format_7zip_deflate.7z"); + test_plain_header("test_read_format_7zip_deflate.7z"); test_bcj("test_read_format_7zip_bcj_deflate.7z"); test_bcj("test_read_format_7zip_bcj2_deflate.7z"); } @@ -681,8 +681,8 @@ DEFINE_TEST(test_read_format_7zip) skipping("7zip:lzma decoding is not supported on this platform"); } else { test_symname(); - text_plain_header("test_read_format_7zip_lzma1.7z"); - text_plain_header("test_read_format_7zip_lzma2.7z"); + test_plain_header("test_read_format_7zip_lzma1.7z"); + test_plain_header("test_read_format_7zip_lzma2.7z"); test_extract_all_files("test_read_format_7zip_copy_2.7z"); test_extract_all_files("test_read_format_7zip_lzma1_2.7z"); test_extract_last_file("test_read_format_7zip_copy_2.7z");