diff options
author | clement <clement@FreeBSD.org> | 2004-01-19 00:40:32 +0000 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-01-19 00:40:32 +0000 |
commit | a8196473ab6634722a896d11bf11adbe3e46341a (patch) | |
tree | 857d4e83e43e1b42ef6d45a98a68f8f24ba55f24 /news/inn-stable/files | |
parent | 2e91b4fbeca53766e6d2d93e50b685fe5271274f (diff) | |
download | FreeBSD-ports-a8196473ab6634722a896d11bf11adbe3e46341a.zip FreeBSD-ports-a8196473ab6634722a896d11bf11adbe3e46341a.tar.gz |
- Update to 20040118 snapshot
Diffstat (limited to 'news/inn-stable/files')
-rw-r--r-- | news/inn-stable/files/patch-innd::art.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/news/inn-stable/files/patch-innd::art.c b/news/inn-stable/files/patch-innd::art.c deleted file mode 100644 index 7943a77..0000000 --- a/news/inn-stable/files/patch-innd::art.c +++ /dev/null @@ -1,24 +0,0 @@ ---- innd/art.c.orig Sat Jul 12 19:40:34 2003 -+++ innd/art.c Thu Jan 8 10:09:34 2004 -@@ -1773,7 +1773,7 @@ - bool - ARTpost(CHANNEL *cp) - { -- char *p, **groups, ControlWord[SMBUF], tmpbuff[32], **hops; -+ char *p, **groups, ControlWord[SMBUF], **hops, *controlgroup; - int i, j, *isp, hopcount, oerrno, canpost; - NEWSGROUP *ngp, **ngptr; - SITE *sp; -@@ -2184,9 +2184,10 @@ - * or control. */ - if (IsControl && Accepted && !ToGroup) { - ControlStore = true; -- FileGlue(tmpbuff, "control", '.', ControlWord); -- if ((ngp = NGfind(tmpbuff)) == NULL) -+ controlgroup = concat("control.", ControlWord, (char *) 0); -+ if ((ngp = NGfind(controlgroup)) == NULL) - ngp = NGfind(ARTctl); -+ free(controlgroup); - ngp->PostCount = 0; - ngptr = GroupPointers; - *ngptr++ = ngp; |