diff options
author | Natanael Copa | 2012-05-22 17:11:46 +0200 |
---|---|---|
committer | Denys Vlasenko | 2012-05-28 01:29:15 +0200 |
commit | 02112d8ae3d0c07214fb2b132e0eacb4ff39d167 (patch) | |
tree | 8cc41e1af5cdea68c393190b27f902f3a0a195fd /include/libbb.h | |
parent | dfc2473b9ed88039697ac89ee2a4301cdaefcf84 (diff) | |
download | busybox-02112d8ae3d0c07214fb2b132e0eacb4ff39d167.zip busybox-02112d8ae3d0c07214fb2b132e0eacb4ff39d167.tar.gz |
unzip: ignore chmod errors
This makes unzip to FAT filesystems not exit with error.
This is similar to how the "normal" unzip works.
Signed-off-by: Natanael Copa <natanael.copa@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index f12800f..5e5c8c7 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -333,6 +333,7 @@ enum { /* DO NOT CHANGE THESE VALUES! cp.c, mv.c, install.c depend on them. */ FILEUTILS_PRESERVE_SECURITY_CONTEXT = 1 << 9, /* -c */ FILEUTILS_SET_SECURITY_CONTEXT = 1 << 10, #endif + FILEUTILS_IGNORE_CHMOD_ERR = 1 << 11, }; #define FILEUTILS_CP_OPTSTR "pdRfilsLH" IF_SELINUX("c") extern int remove_file(const char *path, int flags) FAST_FUNC; |