From 551a70db83ea8fb498c26acc8f7af2b905259fb5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Fri, 9 Jan 2009 18:12:01 +0000 Subject: [PATCH] * fix = that should be == --- webcit/subst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/subst.c b/webcit/subst.c index 28afdebc8..351793545 100644 --- a/webcit/subst.c +++ b/webcit/subst.c @@ -832,7 +832,7 @@ TemplateParam *GetNextParameter(StrBuf *Buf, const char **pCh, const char *pe, W Parm->Start = pchs; Parm->len = pche - pchs; pch ++; /* move after trailing quote */ - if ((Parm->Type = TYPE_GETTEXT) && (*pch == ')')) { + if ((Parm->Type == TYPE_GETTEXT) && (*pch == ')')) { pch ++; } -- 2.39.2