summaryrefslogtreecommitdiff
path: root/news/nn
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>1998-05-22 08:39:12 +0000
committertron <tron@pkgsrc.org>1998-05-22 08:39:12 +0000
commitae1d2d1e856e7daf2fbe08900637b72f96f7d63a (patch)
tree14374e529a3a10f04d54d1097530d9a24aee9dbb /news/nn
parent31f9ad2602d26f6f930458d0cce17c764ca57952 (diff)
downloadpkgsrc-ae1d2d1e856e7daf2fbe08900637b72f96f7d63a.tar.gz
1.3:We use the inews from "nntpclnt-1.6.1" now.
Diffstat (limited to 'news/nn')
-rw-r--r--news/nn/patches/patch-ae35
1 files changed, 0 insertions, 35 deletions
diff --git a/news/nn/patches/patch-ae b/news/nn/patches/patch-ae
deleted file mode 100644
index f8af95d1305..00000000000
--- a/news/nn/patches/patch-ae
+++ /dev/null
@@ -1,35 +0,0 @@
---- inews/clientlib.c.orig Thu Nov 25 10:28:59 1993
-+++ inews/clientlib.c Thu May 21 11:20:24 1998
-@@ -56,6 +56,8 @@
- FILE *ser_rd_fp = NULL;
- FILE *ser_wr_fp = NULL;
-
-+void put_server(char *);
-+
- /*
- * getserverbyfile Get the name of a server from a named file.
- * Handle white space and comments.
-@@ -124,7 +126,7 @@
- server_init(machine)
- char *machine;
- {
-- int sockt_rd, sockt_wr;
-+ int sockt_rd, sockt_wr, result[2];
- char line[256];
- char *index();
- #ifdef DECNET
-@@ -166,7 +168,13 @@
- /* Now get the server's signon message */
-
- (void) get_server(line, sizeof(line));
-- return (atoi(line));
-+ result[0] = atoi(line);
-+
-+ put_server("MODE READER");
-+ (void) get_server(line, sizeof(line));
-+ result[1] = atoi(line);
-+
-+ return ((result[1] != ERR_COMMAND) ? result[1] : result[0]);
- }
-
-