diff options
author | Erik Andersen | 2000-01-23 02:14:20 +0000 |
---|---|---|
committer | Erik Andersen | 2000-01-23 02:14:20 +0000 |
commit | 06936df16411fff0fdc338cae28385d66cabcef8 (patch) | |
tree | 570cf3d9aea702854ebc8cf65d02a6c85cca09fa /internal.h | |
parent | de552874d2074ac48ea4b834d61c54e1b6971be3 (diff) | |
download | busybox-06936df16411fff0fdc338cae28385d66cabcef8.zip busybox-06936df16411fff0fdc338cae28385d66cabcef8.tar.gz |
Fix a bug where tar could change perms and ownership of dirs pointed
to by symlink within a tarball.
-Erik
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ int recursiveAction(const char *fileName, int recurse, int followLinks, int dept int (*dirAction) (const char *fileName, struct stat* statbuf)); const char* timeString(time_t timeVal); -extern void createPath (const char *name, int mode); +extern int createPath (const char *name, int mode); extern int parse_mode( const char* s, mode_t* theMode); extern void usage(const char *usage) __attribute__ ((noreturn)); |