diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-23 02:14:20 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-01-23 02:14:20 +0000 |
commit | 537ed17abd84a5febbb483aa1f9f081e5b28e8a2 (patch) | |
tree | 570cf3d9aea702854ebc8cf65d02a6c85cca09fa /internal.h | |
parent | 1e68bf8b811f3da09754d89dd1bd91091aea43b5 (diff) | |
download | busybox-w32-537ed17abd84a5febbb483aa1f9f081e5b28e8a2.tar.gz busybox-w32-537ed17abd84a5febbb483aa1f9f081e5b28e8a2.tar.bz2 busybox-w32-537ed17abd84a5febbb483aa1f9f081e5b28e8a2.zip |
Fix a bug where tar could change perms and ownership of dirs pointed
to by symlink within a tarball.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@329 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal.h b/internal.h index e57096d4a..2b07d672d 100644 --- a/internal.h +++ b/internal.h | |||
@@ -156,7 +156,7 @@ int recursiveAction(const char *fileName, int recurse, int followLinks, int dept | |||
156 | int (*dirAction) (const char *fileName, struct stat* statbuf)); | 156 | int (*dirAction) (const char *fileName, struct stat* statbuf)); |
157 | const char* timeString(time_t timeVal); | 157 | const char* timeString(time_t timeVal); |
158 | 158 | ||
159 | extern void createPath (const char *name, int mode); | 159 | extern int createPath (const char *name, int mode); |
160 | extern int parse_mode( const char* s, mode_t* theMode); | 160 | extern int parse_mode( const char* s, mode_t* theMode); |
161 | extern void usage(const char *usage) __attribute__ ((noreturn)); | 161 | extern void usage(const char *usage) __attribute__ ((noreturn)); |
162 | 162 | ||