diff options
author | leeym <leeym@FreeBSD.org> | 2006-03-17 08:06:37 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2006-03-17 08:06:37 +0800 |
commit | c815449e33b3dd92a4db22daf9528e150788d371 (patch) | |
tree | ecbe7674122376fef6ef683784a96154d63ac556 /news | |
parent | 4ca3d1eb28dce6085e9ef89aa86547e94d14b38a (diff) | |
download | freebsd-ports-gnome-c815449e33b3dd92a4db22daf9528e150788d371.tar.gz freebsd-ports-gnome-c815449e33b3dd92a4db22daf9528e150788d371.tar.zst freebsd-ports-gnome-c815449e33b3dd92a4db22daf9528e150788d371.zip |
- use %%RC_SUBR%% instead of hardcoded /etc/rc.subr [1]
- fix coredump when parsing user:pass@host in nntpcache.servers [2]
- bump PORTREVISION
PR: 94550 [1], 94549 [2]
Submitted by: tps at vr-web.de [1][2]
Diffstat (limited to 'news')
-rw-r--r-- | news/nntpcache/Makefile | 2 | ||||
-rw-r--r-- | news/nntpcache/files/nntpcached.in | 2 | ||||
-rw-r--r-- | news/nntpcache/files/patch-src-nntpcache.c | 11 |
3 files changed, 13 insertions, 2 deletions
diff --git a/news/nntpcache/Makefile b/news/nntpcache/Makefile index 8d50d143fc35..425a8f6e8190 100644 --- a/news/nntpcache/Makefile +++ b/news/nntpcache/Makefile @@ -7,7 +7,7 @@ PORTNAME= nntpcache PORTVERSION= 3.0.2 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= news MASTER_SITES= http://www.nntpcache.com/pub/nntpcache/ diff --git a/news/nntpcache/files/nntpcached.in b/news/nntpcache/files/nntpcached.in index 691fc250f3c6..f0c387e48aa0 100644 --- a/news/nntpcache/files/nntpcached.in +++ b/news/nntpcache/files/nntpcached.in @@ -11,7 +11,7 @@ # nntpcached_enable="YES" # -. /etc/rc.subr +. %%RC_SUBR%% name=nntpcached rcvar=`set_rcvar` diff --git a/news/nntpcache/files/patch-src-nntpcache.c b/news/nntpcache/files/patch-src-nntpcache.c new file mode 100644 index 000000000000..ef3e490f551b --- /dev/null +++ b/news/nntpcache/files/patch-src-nntpcache.c @@ -0,0 +1,11 @@ +--- src/nntpcache.c.orig Fri Mar 17 07:53:45 2006 ++++ src/nntpcache.c Fri Mar 17 07:53:51 2006 +@@ -810,7 +810,7 @@ + loge (("missing password in %s:%d: %s", file, n, buf)); + continue; + } +- if ((hostname = strrchr(password-2, '@')) != NULL) { ++ if ((hostname = strrchr(password, '@')) != NULL) { + *(hostname++) = '\0'; + username = host; + list->user = Sstrdup (username); |