dtfile: make it build

This commit is contained in:
Jon Trulson
2019-10-30 10:59:45 -06:00
parent 89914f6168
commit 62e6e5c58c
5 changed files with 14 additions and 9 deletions

View File

@@ -712,13 +712,13 @@ CopyDir(
rc = execlp(DTCOPY, "dtfile_copy",
"-dontDelete", "-forceCopies", "-copyTop",
"-confirmReplace", "-confirmErrors", "-popDown",
from, target, 0);
from, target, (char *)NULL);
else
/* replace target dir */
rc = execlp(DTCOPY, "dtfile_copy",
"-forceCopies", "-copyTop",
"-confirmErrors", "-popDown",
from, target, 0);
from, target, (char *)NULL);
/* call errorhandler */
perror ("Could not exec child process \"dtfile_copy\"");