summaryrefslogtreecommitdiff
path: root/source3/client/clitar.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-11-22 23:06:29 +0000
committerJeremy Allison <jra@samba.org>2000-11-22 23:06:29 +0000
commit8d26523e90ff76adf6195d938fa1b8bc2b747dc1 (patch)
treefb6f9e109168789a5653a96fdbe478f592e86b73 /source3/client/clitar.c
parentaf85ca538cc1f04f089c85dd5814f4c66036bc79 (diff)
downloadsamba-8d26523e90ff76adf6195d938fa1b8bc2b747dc1.tar.gz
samba-8d26523e90ff76adf6195d938fa1b8bc2b747dc1.tar.bz2
samba-8d26523e90ff76adf6195d938fa1b8bc2b747dc1.zip
Tar fixes from Craig Barratt craig@arraycomm.com.
Jeremy. (This used to be commit cf05709ec394d6cac14577c033d658bdc4506208)
Diffstat (limited to 'source3/client/clitar.c')
-rw-r--r--source3/client/clitar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c
index efa4fa8815..fe0fc83e4c 100644
--- a/source3/client/clitar.c
+++ b/source3/client/clitar.c
@@ -181,7 +181,7 @@ static void writetarheader(int f, char *aname, int size, time_t mtime,
memset(hb.dummy, 0, sizeof(hb.dummy));
l=strlen(aname);
- if (l >= NAMSIZ) {
+ if (l >= NAMSIZ - 1) {
/* write a GNU tar style long header */
char *b;
b = (char *)malloc(l+TBLOCK+100);
@@ -189,7 +189,7 @@ static void writetarheader(int f, char *aname, int size, time_t mtime,
DEBUG(0,("out of memory\n"));
exit(1);
}
- writetarheader(f, "/./@LongLink", l+1, 0, " 0 \0", 'L');
+ writetarheader(f, "/./@LongLink", l+2, 0, " 0 \0", 'L');
memset(b, 0, l+TBLOCK+100);
fixtarname(b, aname, l);
i = strlen(b)+1;