aboutsummaryrefslogtreecommitdiff
path: root/news/newsx/files/patch-bg
diff options
context:
space:
mode:
Diffstat (limited to 'news/newsx/files/patch-bg')
-rw-r--r--news/newsx/files/patch-bg22
1 files changed, 0 insertions, 22 deletions
diff --git a/news/newsx/files/patch-bg b/news/newsx/files/patch-bg
deleted file mode 100644
index 314ffc707aa0..000000000000
--- a/news/newsx/files/patch-bg
+++ /dev/null
@@ -1,22 +0,0 @@
---- src/config.c.orig Mon Apr 19 05:32:38 1999
-+++ src/config.c Sun Feb 18 15:03:48 2001
-@@ -12,6 +12,9 @@
- * the GNU General Public License applies
- *
- * $Log: config.c,v $
-+ * Revision x.xx 2001/02/18
-+ * Use xmalloc and xrealloc from libinn.h (<thierry@thomas.as>)
-+ *
- * Revision 1.10 1999/04/19 03:32:38 src
- * Standard profile in $PATHETC/newsx.conf
- *
-@@ -100,7 +103,8 @@
- /* BUG: check if already? */
- n = sizeof(CONFIG_S) + strlen(val);
-
-- cp = xmalloc(n);
-+/* xmalloc from libinn (<thierry@thomas.as>) */
-+ cp = xmalloc(n,"config.c",107);
-
- /* add to list of config tags at that hashindex */
- strcpy(cp->name,tag);