From: Wilfried Goesgens Date: Sun, 31 Jul 2011 16:49:56 +0000 (+0000) Subject: ups. zero based so an off by one. X-Git-Tag: v8.11~530 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b20ff05a306e9acd3d34eea17cfc67b1c33e6ba3 ups. zero based so an off by one. --- diff --git a/webcit/messages.c b/webcit/messages.c index 560e031f4..ac363f55a 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1405,7 +1405,7 @@ void display_enter(void) { long which = 0; if ((StrLength(Line) > 4) && - (ChrPtr(Line)[5] == '=')) + (ChrPtr(Line)[4] == '=')) which = FourHash(ChrPtr(Line), 4); if (which == l_subj)