From ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Wed, 27 Feb 2013 18:07:32 +0000 Subject: libtar - Fix extraction of hardlinks to use the prefix Change-Id: I116982ceed722364406b99fb08bc6943afa0390a --- twrpTar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'twrpTar.cpp') diff --git a/twrpTar.cpp b/twrpTar.cpp index 0bf76e519..159c1d1b9 100644 --- a/twrpTar.cpp +++ b/twrpTar.cpp @@ -122,7 +122,7 @@ int twrpTar::extractTarFork() { int status; pid_t pid; if ((pid = fork()) == -1) { - LOGI("create tar failed to fork.\n"); + LOGI("extract tar failed to fork.\n"); return -1; } if (pid == 0) { @@ -144,7 +144,7 @@ int twrpTar::extractTarFork() { else if (WIFEXITED(status) != 0) LOGI("Tar extraction successful\n"); else { - LOGI("Tar creation failed\n"); + LOGI("Tar extraction failed\n"); return -1; } } -- cgit v1.2.3