Patch from Matt Kraai to fix debian bug #227081
authorGlenn L McGrath <bug1@ihug.co.nz>
Sun, 11 Jan 2004 05:20:59 +0000 (05:20 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Sun, 11 Jan 2004 05:20:59 +0000 (05:20 -0000)
cp does not truncate existing destinations.  That is, after
running

 echo foo > foo
 echo fubar > fubar
 cp foo fubar

the contents of fubar are

 foo
 r

instead of

 foo

libbb/copy_file.c

index ffdb824..7ddb9a2 100644 (file)
@@ -153,7 +153,7 @@ int copy_file(const char *source, const char *dest, int flags)
                                }
                        }
 
-                       dst_fd = open(dest, O_WRONLY);
+                       dst_fd = open(dest, O_WRONLY|O_TRUNC);
                        if (dst_fd == -1) {
                                if (!(flags & FILEUTILS_FORCE)) {
                                        bb_perror_msg("unable to open `%s'", dest);