libtar: don't set parent dir's context when extracting a file

Change-Id: I83e11b0119c47cb691d4e05ac1e5515aeafbdc87
Signed-off-by: Vojtech Bocek <vbocek@gmail.com>
This commit is contained in:
Vojtech Bocek
2014-06-06 16:15:52 +02:00
parent 25ede0547e
commit 0ea3be665a
-3
View File
@@ -164,9 +164,6 @@ tar_extract_file(TAR *t, char *realname, char *prefix)
if (lsetfilecon(realname, t->th_buf.selinux_context) < 0) {
fprintf(stderr, "Failed to restore SELinux context %s!\n", strerror(errno));
}
if (lsetfilecon(dirname(realname), t->th_buf.selinux_context) < 0) {
fprintf(stderr, "Failed to restore SELinux context %s!\n", strerror(errno));
}
}
#endif