From 93780d0430d8f3acad65a5da5ea49ba42b74341f Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 27 Aug 2010 18:37:59 +0000 Subject: [PATCH] * One more change to the recent header folding bugfix --- citadel/internet_addressing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/internet_addressing.c b/citadel/internet_addressing.c index 8bfdd6a1c..5f19a9a56 100644 --- a/citadel/internet_addressing.c +++ b/citadel/internet_addressing.c @@ -779,7 +779,7 @@ struct CtdlMessage *convert_internet_message_buf(StrBuf **rfc822) (done == 0) ) { - if ( (*pos=='\n') && ((*pos+1)!=0x20) && ((*pos+1)!=0x09) ) + if ( (*pos=='\n') && ((*(pos+1))!=0x20) && ((*(pos+1))!=0x09) ) { end = pos; } -- 2.30.2