From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu From: David Swasey MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: [9fans] nntppost Date: Fri, 15 Nov 2002 18:15:11 -0500 Topicbox-Message-UUID: 218f96d0-eacb-11e9-9e20-41e7f4b1d025 ATTBI's news servers require the lines of a posted article to be terminated with \r\n rather than \n. Here is a small patch to enable nntpfs.c to post to those servers. -dave term% diff /sys/src/cmd/nntpfs.c ./nntpfs.c 617a618 > Bputc(&n->bw, '\r'); 620c621 < Bprint(&n->bw, ".\n"); --- > Bprint(&n->bw, ".\r\n");