From: Art Cancro Date: Fri, 27 Aug 2010 18:37:59 +0000 (+0000) Subject: * One more change to the recent header folding bugfix X-Git-Tag: v8.01~837 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=93780d0430d8f3acad65a5da5ea49ba42b74341f * One more change to the recent header folding bugfix --- 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; }