aboutsummaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-bd
diff options
context:
space:
mode:
Diffstat (limited to 'news/newsx/files/patch-bd')
-rw-r--r--news/newsx/files/patch-bd23
1 files changed, 0 insertions, 23 deletions
diff --git a/news/newsx/files/patch-bd b/news/newsx/files/patch-bd
deleted file mode 100644
index d03bf6e2bf0c..000000000000
--- a/news/newsx/files/patch-bd
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/msgid.c.orig Sun Mar 7 15:58:18 1999
-+++ src/msgid.c Sun Feb 18 14:33:18 2001
-@@ -7,6 +7,9 @@
- * the GNU General Public License applies
- *
- * $Log: msgid.c,v $
-+ * Revision x.xx 2001/02/18
-+ * Use xmalloc and xrealloc from libinn.h (<thierry@thomas.as>)
-+ *
- * Revision 1.6 1999/03/07 14:58:18 src
- * Read newsconfig supported. Storage API supported.
- *
-@@ -53,7 +56,9 @@
-
- /* add to list */
- n = sizeof(MESSAGE_ID) + strlen(msgid);
-- mp = xmalloc(n);
-+
-+/* xmalloc from libinn (<thierry@thomas.as>) */
-+ mp = xmalloc(n,"msgid.c",61);
- strcpy(mp->name,msgid);
- mp->next = messageids[h];
- messageids[h] = mp;