1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Fix from Craig Barratt <cbarratt@users.sourceforge.net> to fix restore

with filenames > 100 chars.
Jeremy.
(This used to be commit aa40a86cbe797cba4e281cb8dc09b2ae67e93dc2)
This commit is contained in:
Jeremy Allison 2003-09-12 01:25:35 +00:00
parent 150d3d535c
commit a4e5e3f3a5

View File

@ -1054,9 +1054,11 @@ static int get_dir(file_info2 finfo)
has the data. We only want the long file name, as the loop in do_tarput
will deal with the rest.
*/
static char * get_longfilename(file_info2 finfo)
static char *get_longfilename(file_info2 finfo)
{
int namesize = strlen(finfo.name) + strlen(cur_dir) + 2;
/* finfo.size here is the length of the filename as written by the "/./@LongLink" name
* header call. */
int namesize = finfo.size + strlen(cur_dir) + 2;
char *longname = malloc(namesize);
int offset = 0, left = finfo.size;
BOOL first = True;