From 4f76d033d5f7ea781aff3b7377c9a720ed12f0bf Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 1 Feb 2003 21:39:59 +0000 Subject: [PATCH] In xlatlognam(), use the start of the destination buffer as the destination filename, not the end. [originally from svn r2770] --- logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logging.c b/logging.c index 6c4e1889..499747c7 100644 --- a/logging.c +++ b/logging.c @@ -258,5 +258,5 @@ static void xlatlognam(Filename *dest, Filename src, } *d = '\0'; - *dest = filename_from_str(d); + *dest = filename_from_str(buffer); }