aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2008-03-26 00:54:56 -0500
committerRob Landley <rob@landley.net>2008-03-26 00:54:56 -0500
commit50c8c023358645195585f1503bfb97e2fb92c940 (patch)
tree8ba8b81f17438a05a7dbd2022c6c2c90909a7f82 /toys
parent5ba6663ad463973a39fd65397f9ebda52657eb7c (diff)
downloadtoybox-50c8c023358645195585f1503bfb97e2fb92c940.tar.gz
Another cp -r fix, another test case...
Diffstat (limited to 'toys')
-rw-r--r--toys/cp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/toys/cp.c b/toys/cp.c
index 13cb9672..d589f0ab 100644
--- a/toys/cp.c
+++ b/toys/cp.c
@@ -69,8 +69,9 @@ void cp_file(char *src, char *dst, struct stat *srcst)
// we created. The closest we can do to closing this is make sure
// that what we open _is_ a directory rather than something else.
- if (mkdir(dst, srcst->st_mode | 0200) || 0>(fdout=open(dst, 0))
- || fstat(fdout, &st2) || !S_ISDIR(st2.st_mode))
+ if ((mkdir(dst, srcst->st_mode | 0200) && errno != EEXIST)
+ || 0>(fdout=open(dst, 0)) || fstat(fdout, &st2)
+ || !S_ISDIR(st2.st_mode))
{
perror_exit("mkdir '%s'", dst);
}