From a8833af0fa20b68e6e09736f57c8f3137719cc0c Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 4 Mar 2024 17:31:18 +0000 Subject: [PATCH] lib.c (subst): Refer to the correct variable. Organization: Straylight/Edgeware From: Mark Wooding I don't know what happened here: the code came first by some margin. --- lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.c b/lib.c index 5aa12e3..dea6c09 100644 --- a/lib.c +++ b/lib.c @@ -1462,7 +1462,7 @@ static const char *subst(const char *p, const char *l, if (!(f&SF_SKIP)) { - /* If this is a double quote or backslash then check DFLT to see if + /* If this is a double quote or backslash then check QFILT to see if * it needs escaping. */ if (qfilt && (*p == '"' || *p == '\\')) -- [mdw]