ietf-nntp Draft summary of IETF 48 meeting

Russ Allbery rra at stanford.edu
Thu Aug 17 12:24:17 PDT 2000


Charles Lindsey <chl at clw.cs.man.ac.uk> writes:
> Andrew Gierth <andrew at erlenstar.demon.co.uk> writes:

>> (note - this is not what INN did last time I looked, it just replaced
>> CR,LF,TAB one-for-one with spaces.)

> Double Ugh!

Why's that so ugly?  It basically just converts all whitespace to the same
thing in a way that doesn't require an in-memory copy.

In any case, I can confirm this:

        for (p = &Overview.Data[i]; i < Overview.Left; p++, i++)
            if (*p == '\t' || *p == '\n' || *p == '\r')
                *p = ' ';

-- 
Russ Allbery (rra at stanford.edu)             <http://www.eyrie.org/~eagle/>



More information about the ietf-nntp mailing list