summaryrefslogtreecommitdiff
path: root/libbb/copy_file.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add some missing includes to kill warnings when building with the defaultManuel Novoa III2001-06-291-0/+1
| | | | | | | Config.h and using gcc's -fno-builtin. There are probably other files with the similar problems. Also, if building against uClibc, don't include asm/unistd.h in syscalls.c and module_syscalls.c.
* Copy files until EOF, not the reported file size, to deal with bad sizes inMatt Kraai2001-06-111-3/+4
| | | | the proc filesystem.
* Made new xreadlink function for libbb and changed applets to use it instead ofMark Whitley2001-04-301-10/+3
| | | | readlink(2).
* Fix user permissions of copied directories.Matt Kraai2001-04-301-1/+8
|
* Simplify permission handling for FIFOs.Matt Kraai2001-04-301-12/+1
|
* Fix exit status when there is an error copying a file.Matt Kraai2001-04-301-1/+1
|
* Terminate source correctly when copying symlink. Report and patch byMatt Kraai2001-04-271-2/+3
| | | | Brian Webb <webbb@desertscenes.net>.
* Use generic flag names.Matt Kraai2001-04-241-9/+10
|
* Move applet_name declaration from busybox.h to libbb.h.Matt Kraai2001-04-241-1/+1
|
* Rewrite cp and mv to be SUSv2 compliant.Matt Kraai2001-04-231-143/+189
|
* Set permissions of created fileGlenn L McGrath2001-04-201-0/+1
|
* copy_file_chunk uses streams now.Glenn L McGrath2001-04-111-58/+75
|
* Convert utility.c into libbb.a. It is now a whole pile of .cEric Andersen2001-03-161-0/+180
files. Clean up the resulting damage and fix up the makefile. -Erik