diff options
author | asami <asami@FreeBSD.org> | 1995-06-05 21:45:08 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-06-05 21:45:08 +0800 |
commit | f3c28a04e44a932440e1fea1f9a70efc5c7a7c60 (patch) | |
tree | d762d781280754393a1ad26aad73d6dea3683092 /news/inn-current | |
parent | 07e265cfddcd01f9f9a49d3ff044ceb7fbfcbf3d (diff) | |
download | freebsd-ports-gnome-f3c28a04e44a932440e1fea1f9a70efc5c7a7c60.tar.gz freebsd-ports-gnome-f3c28a04e44a932440e1fea1f9a70efc5c7a7c60.tar.zst freebsd-ports-gnome-f3c28a04e44a932440e1fea1f9a70efc5c7a7c60.zip |
Fix these bugs.
- The expiration processing fails when attempting to store a long message-id
in the new DBZ database. If left uncorrected, a disk full condition is
likely to occur.
- When innxmit (on the master) encounters a news article that is
cross-posted to LOTS of other newsgroups it segmentation faults.
Submitted by: torstenb
Diffstat (limited to 'news/inn-current')
-rw-r--r-- | news/inn-current/Makefile | 13 | ||||
-rw-r--r-- | news/inn-current/distinfo | 2 |
2 files changed, 12 insertions, 3 deletions
diff --git a/news/inn-current/Makefile b/news/inn-current/Makefile index 98e3d0347efd..047e4e644957 100644 --- a/news/inn-current/Makefile +++ b/news/inn-current/Makefile @@ -3,7 +3,7 @@ # Date created: 20 Oct 1994 # Whom: torstenb # -# $Id: Makefile,v 1.6 1995/05/09 00:48:44 asami Exp $ +# $Id: Makefile,v 1.7 1995/05/30 09:56:20 asami Exp $ # DISTNAME= inn1.4sec @@ -13,16 +13,23 @@ MASTER_SITES= ftp://ftp.uu.net/networking/news/nntp/inn/ EXTRACT_SUFX= .tar.Z PATCH_SITES= ftp://ftp.math.psu.edu/pub/INN/patches/ -PATCHFILES= select-loop-bug.patch +PATCHFILES= select-loop-bug.patch innxmit-long-lines MAINTAINER= torstenb@FreeBSD.ORG NO_WRKSUBDIR= YES pre-install: - mkdir -p ${PREFIX}/news /var/spool/news/over.view + mkdir -p ${PREFIX}/news post-install: + if [ -d /var/spool/news ] && [ ! -d /var/news ]; then \ + mkdir -m 0775 -p /var/spool/news/over.view; \ + chown news.news /var/spool/news/over.view; \ + else \ + mkdir -m 0775 -p /var/news/over.view; \ + chown news.news /var/news/over.view; \ + fi gzip -9nf ${PREFIX}/man/man1/convdate.1 ${PREFIX}/man/man1/getlist.1 \ ${PREFIX}/man/man1/grephistory.1 ${PREFIX}/man/man1/inews.1 \ ${PREFIX}/man/man1/innconfval.1 ${PREFIX}/man/man1/installit.1 \ diff --git a/news/inn-current/distinfo b/news/inn-current/distinfo index 0cb062e20c8c..c70faecb3159 100644 --- a/news/inn-current/distinfo +++ b/news/inn-current/distinfo @@ -1 +1,3 @@ MD5 (inn1.4sec.tar.Z) = 6c916baf2b7029b13caf2701f2406e50 +MD5 (select-loop-bug.patch) = 85b0ac32f130ab9cfb5c640ebf99d864 +MD5 (innxmit-long-lines) = 3b0ee87ae6d9e5e39470df777f515397 |