aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-27 19:50:47 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-01-27 19:50:47 +0000
commit2f1e4cb06b9e262ec8d28b2082f9186daf56ac5b (patch)
treeb49f4bb9a7eecc77307c014f8eafa1d60218da20 /tar.c
parent1a0c0d1f16ed677c80d6a3183955d04f59c5862f (diff)
downloadbusybox-w32-2f1e4cb06b9e262ec8d28b2082f9186daf56ac5b.tar.gz
busybox-w32-2f1e4cb06b9e262ec8d28b2082f9186daf56ac5b.tar.bz2
busybox-w32-2f1e4cb06b9e262ec8d28b2082f9186daf56ac5b.zip
copyFile could call chmod on a symlink, changing the perms
of the pointed to file. Minor fix to tar for directory handling. -Erik git-svn-id: svn://busybox.net/trunk/busybox@344 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tar.c b/tar.c
index aedb36a23..0fa09ffd8 100644
--- a/tar.c
+++ b/tar.c
@@ -596,6 +596,7 @@ readHeader (const TarHeader * hp, int fileCount, char **fileTable)
596 chmod(outName, mode); 596 chmod(outName, mode);
597 return; 597 return;
598 } 598 }
599 return;
599 } 600 }
600 601
601 /* 602 /*