diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-29 10:30:50 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-29 10:30:50 +0000 |
commit | 3e816c1252cc55e3763f946622129d31ea1f0f20 (patch) | |
tree | 5031fd816b1df09eaa897530a37ce814bba95011 /archival/tar.c | |
parent | 3d43edb28c80ee9cb54335f593d42d5d0471e15a (diff) | |
download | busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.gz busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.tar.bz2 busybox-w32-3e816c1252cc55e3763f946622129d31ea1f0f20.zip |
- fold recurse, depthFirst and dereference params into one param flags.
Minor size improvement (-16b for size, -24b according to bloat-o-meter).
Diffstat (limited to 'archival/tar.c')
-rw-r--r-- | archival/tar.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/archival/tar.c b/archival/tar.c index 176a7e22d..5a6ef60db 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -562,8 +562,9 @@ static int writeTarFile(const int tar_fd, const int verboseFlag, | |||
562 | 562 | ||
563 | /* Read the directory/files and iterate over them one at a time */ | 563 | /* Read the directory/files and iterate over them one at a time */ |
564 | while (include) { | 564 | while (include) { |
565 | if (!recursive_action(include->data, TRUE, dereferenceFlag, | 565 | if (!recursive_action(include->data, (action_recurse | |
566 | FALSE, writeFileToTarball, writeFileToTarball, &tbInfo, 0)) | 566 | dereferenceFlag ? action_followLinks : 0), |
567 | writeFileToTarball, writeFileToTarball, &tbInfo, 0)) | ||
567 | { | 568 | { |
568 | errorFlag = TRUE; | 569 | errorFlag = TRUE; |
569 | } | 570 | } |