From 8dbd32e9a536aa6923d060712eedf729a96a64fe Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Sun, 6 Sep 1998 11:35:34 +0000 Subject: [PATCH] Fixing the quoting of shell specials in mutt_expand_fmt(). --- lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.c b/lib.c index 3d889c007..9bc715295 100644 --- a/lib.c +++ b/lib.c @@ -630,7 +630,7 @@ void mutt_expand_fmt (char *dest, size_t destlen, const char *fmt, const char *s } } - strfcpy (dest, src, destlen); + strfcpy (dest, _src, destlen); if (slen > destlen) { /* no more room */ -- 2.40.0