From 717f538e2efdce231f6b9255be998cc4495337df Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 18 Sep 1998 17:32:35 +0000 Subject: Fixed compile errors in new code. Jeremy. (This used to be commit dbd8ce8a7053b6ea051e9bbdd0ddc27f1e0cb7c2) --- source3/client/clitar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/client') diff --git a/source3/client/clitar.c b/source3/client/clitar.c index c38f9fdec9..9cb71b10a2 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -1686,7 +1686,7 @@ static int get_file(file_info2 finfo, char * inbuf, char * outbuf) DEBUG(5, ("Updating creation date on %s\n", finfo.name)); - if (!do_setrtime(finfo.name, finfo.mtime)) { + if (!do_setrtime(finfo.name, finfo.mtime, True)) { DEBUG(0, ("Could not set time on file: %s\n", finfo.name)); /*return(False); */ /* Ignore, as Win95 does not allow changes */ @@ -1755,7 +1755,7 @@ static char * get_longfilename(file_info2 finfo) } - unfixtarname(longname + offset, buffer_p, MIN(TBLOCK, finfo.size)); + unfixtarname(longname + offset, buffer_p, MIN(TBLOCK, finfo.size),False); DEBUG(5, ("UnfixedName: %s, buffer: %s\n", longname, buffer_p)); offset += TBLOCK; @@ -1780,7 +1780,7 @@ static void do_tarput(void) buffer_p = tarbuf + tbufsiz; /* init this to force first read */ -#ifdef 0 /* Fix later ... */ +#if 0 /* Fix later ... */ if (push_dir(&dir_stack, &finfo)) { finfo2 = pop_dir(&dir_stack); -- cgit