diff options
author | Erik Andersen | 2000-03-28 00:58:14 +0000 |
---|---|---|
committer | Erik Andersen | 2000-03-28 00:58:14 +0000 |
commit | 3364d78b18386623e7af5da18ba1bb0cc6286279 (patch) | |
tree | 36b57afb6f3eefcdc8fdaf40e51fa6956264db50 /cp_mv.c | |
parent | 6acaa40f27de0da935c3063b6be2ead9eeee5d0b (diff) | |
download | busybox-3364d78b18386623e7af5da18ba1bb0cc6286279.zip busybox-3364d78b18386623e7af5da18ba1bb0cc6286279.tar.gz |
Yet another installment in the ongoing tar saga
-Erik
Diffstat (limited to 'cp_mv.c')
-rw-r--r-- | cp_mv.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -105,7 +105,7 @@ fill_baseDest_buf(char *_buf, size_t * _buflen) { } static int -cp_mv_Action(const char *fileName, struct stat *statbuf) +cp_mv_Action(const char *fileName, struct stat *statbuf, void* junk) { char destName[PATH_MAX + 1]; size_t destLen; @@ -165,7 +165,7 @@ cp_mv_Action(const char *fileName, struct stat *statbuf) } static int -rm_Action(const char *fileName, struct stat *statbuf) +rm_Action(const char *fileName, struct stat *statbuf, void* junk) { int status = TRUE; @@ -310,11 +310,11 @@ extern int cp_mv_main(int argc, char **argv) mv_Action_first_time = 1; if (recursiveAction(baseSrcName, recursiveFlag, followLinks, FALSE, - cp_mv_Action, cp_mv_Action) == FALSE) goto exit_false; + cp_mv_Action, cp_mv_Action, NULL) == FALSE) goto exit_false; if (dz_i == is_mv && recursiveAction(baseSrcName, recursiveFlag, followLinks, TRUE, - rm_Action, rm_Action) == FALSE) goto exit_false; + rm_Action, rm_Action, NULL) == FALSE) goto exit_false; } if (flags_memo) *(baseDestName + baseDestLen) = '\0'; |