fix contents of In-reply-to header: bug 173645 r=ducarroz sr=bienvenu a=asa

This commit is contained in:
jgmyers%netscape.com 2002-10-17 22:17:08 +00:00
Родитель 5e495ca5f5
Коммит 6059abb364
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -663,12 +663,11 @@ RRT_HEADER:
PUSH_STRING (pReference);
PUSH_NEWLINE ();
{
char *trimAt = PL_strchr(pReference, '>');
const char *lastRef = PL_strrchr(pReference, '<');
if (trimAt) {
trimAt++;
if (lastRef) {
PUSH_STRING ("In-Reply-To: ");
PUSH_STRINGN (pReference, trimAt-pReference);
PUSH_STRING (lastRef);
PUSH_NEWLINE ();
}
}