[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bug in makeLetter (router/rfc822.c)



> The problem can be corrected by adding the noted line to
> router/rfc822.c:
> 
>    209      while ((n = getline(e->e_fp)) > !octothorp) {
...
>    216              linebuf[n-1] = '\n';
> ***new              if (n > !octothorp) break;   
>    217          }


Bzzzt!  That obviously should hav been:

***new              if (n <= !octothorp) break;   


		--Ken Pizzini