1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-10 07:38:06 -05:00

In xlatlognam(), use the start of the destination buffer as the destination

filename, not the end.

[originally from svn r2770]
This commit is contained in:
Ben Harris 2003-02-01 21:39:59 +00:00
parent 8aa218fd1d
commit 4f76d033d5

View File

@ -258,5 +258,5 @@ static void xlatlognam(Filename *dest, Filename src,
}
*d = '\0';
*dest = filename_from_str(d);
*dest = filename_from_str(buffer);
}