From: Thomas Roessler Date: Sun, 6 Sep 1998 11:35:34 +0000 (+0000) Subject: Fixing the quoting of shell specials in mutt_expand_fmt(). X-Git-Tag: mutt-0-94-6i-rel~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78007b4a7a051951d80e3ec7df39503799eb339a;p=mutt Fixing the quoting of shell specials in mutt_expand_fmt(). --- diff --git a/lib.c b/lib.c index 3d889c00..9bc71529 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 */