From: Wilfried Göesgens Date: Fri, 9 Jan 2009 18:12:01 +0000 (+0000) Subject: * fix = that should be == X-Git-Tag: v7.86~1635 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=551a70db83ea8fb498c26acc8f7af2b905259fb5;p=citadel.git * fix = that should be == --- 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 ++; }