summaryrefslogtreecommitdiff
path: root/source3/client/clitar.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-09-18 17:32:35 +0000
committerJeremy Allison <jra@samba.org>1998-09-18 17:32:35 +0000
commit717f538e2efdce231f6b9255be998cc4495337df (patch)
tree44660a5fefaf7264a9868f0c8bba7ae82bd06709 /source3/client/clitar.c
parent6527cd8d0b9d4d686633d68453df2cdbd4c74805 (diff)
downloadsamba-717f538e2efdce231f6b9255be998cc4495337df.tar.gz
samba-717f538e2efdce231f6b9255be998cc4495337df.tar.bz2
samba-717f538e2efdce231f6b9255be998cc4495337df.zip
Fixed compile errors in new code.
Jeremy. (This used to be commit dbd8ce8a7053b6ea051e9bbdd0ddc27f1e0cb7c2)
Diffstat (limited to 'source3/client/clitar.c')
-rw-r--r--source3/client/clitar.c6
1 files changed, 3 insertions, 3 deletions
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);