diff options
author | Denis Vlasenko | 2006-10-21 23:40:20 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-21 23:40:20 +0000 |
commit | f24e1f40e032e99cf57a05730e7632b825d3016d (patch) | |
tree | a6d0fa74d59e67d1570c54157f5ebcc47b4522d0 /coreutils/libcoreutils | |
parent | 8d73c35916cbae67f5d0269b128de40f9992ddc6 (diff) | |
download | busybox-f24e1f40e032e99cf57a05730e7632b825d3016d.zip busybox-f24e1f40e032e99cf57a05730e7632b825d3016d.tar.gz |
cp: add support for -s, -l. Fix free(nonmalloc) bug.
Add doc on POSIX's rules on -i and -f (insane!).
ln: make "ln dangling_symlink new_link" work.
Diffstat (limited to 'coreutils/libcoreutils')
-rw-r--r-- | coreutils/libcoreutils/cp_mv_stat.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/coreutils/libcoreutils/cp_mv_stat.c b/coreutils/libcoreutils/cp_mv_stat.c index d401bcc..0849ebc 100644 --- a/coreutils/libcoreutils/cp_mv_stat.c +++ b/coreutils/libcoreutils/cp_mv_stat.c @@ -20,8 +20,6 @@ * */ -#include <errno.h> -#include <sys/stat.h> #include "libbb.h" #include "coreutils.h" @@ -29,7 +27,7 @@ int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) { if (sf(fn, fn_stat) < 0) { if (errno != ENOENT) { - bb_perror_msg("unable to stat `%s'", fn); + bb_perror_msg("unable to stat '%s'", fn); return -1; } return 0; |