diff options
Diffstat (limited to 'news/newsx/files/patch-bf')
-rw-r--r-- | news/newsx/files/patch-bf | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/news/newsx/files/patch-bf b/news/newsx/files/patch-bf deleted file mode 100644 index d7956200e572..000000000000 --- a/news/newsx/files/patch-bf +++ /dev/null @@ -1,22 +0,0 @@ ---- src/path.c.orig Wed Mar 24 04:53:00 1999 -+++ src/path.c Sun Feb 18 14:56:26 2001 -@@ -6,6 +6,9 @@ - * the GNU General Public License applies - * - * $Log: path.c,v $ -+ * Revision x.xx 2001/02/18 -+ * Use xmalloc and xrealloc from libinn.h (<thierry@thomas.as>) -+ * - * Revision 1.3 1999/03/24 03:53:00 src - * Implemented "newsx" as magic exclude pattern - * -@@ -40,7 +43,8 @@ - - if (PATH_DEBUG) fprintf(stderr,"Add exclusion: %s\n",path); - -- e = xmalloc(sizeof(struct ex_s)); -+/* xmalloc from libinn (<thierry@thomas.as>) */ -+ e = xmalloc(sizeof(struct ex_s),"path.c",47); - e->e_next = exclusion; - e->e_name = xstrcpy(path); - exclusion = e; |