Update to 2.5.3

This commit is contained in:
giovanni 2011-05-09 09:32:19 +00:00
parent ce2fea2aed
commit 605df406db
3 changed files with 7 additions and 31 deletions

View File

@ -1,12 +1,11 @@
# $OpenBSD: Makefile,v 1.38 2010/11/19 07:23:06 espie Exp $
# $OpenBSD: Makefile,v 1.39 2011/05/09 09:32:19 giovanni Exp $
COMMENT-main= mail delivery agent with filtering abilities
COMMENT-utils= quota tools for the Courier mail suite
V= 2.5.0
V= 2.5.3
DISTNAME= maildrop-$V
PKGNAME-main= maildrop-${V}
REVISION-main = 0
FULLPKGNAME-utils= courier-utils-$V
FULLPKGPATH-utils= mail/maildrop,-utils
CATEGORIES= mail

View File

@ -1,5 +1,5 @@
MD5 (maildrop-2.5.0.tar.bz2) = 792aEySqDFtCenfTBe1eyw==
RMD160 (maildrop-2.5.0.tar.bz2) = rXiAus5ubmE12bwlrsc5fXrJaDc=
SHA1 (maildrop-2.5.0.tar.bz2) = 4JJV3sF515blWvAIqKU2R5rsVaw=
SHA256 (maildrop-2.5.0.tar.bz2) = SaNaKb9XuF4YV3yMJwVQrkP1p3LdI00/OzVkuIxO9K0=
SIZE (maildrop-2.5.0.tar.bz2) = 2413245
MD5 (maildrop-2.5.3.tar.bz2) = W6UiNs7ClH51+vzWFG/YzQ==
RMD160 (maildrop-2.5.3.tar.bz2) = QS+VUDATtnRewOT/mIFRSbDT+wQ=
SHA1 (maildrop-2.5.3.tar.bz2) = yx2CJkoNGv5r+4dFYFAXhkvME14=
SHA256 (maildrop-2.5.3.tar.bz2) = Rgz9lI08yg9HtVwFcKbAgnpUGzcd6QIo+ZT2ZhCeHmU=
SIZE (maildrop-2.5.3.tar.bz2) = 2082338

View File

@ -1,23 +0,0 @@
$OpenBSD: patch-rfc822_rfc822_c,v 1.2 2010/07/08 16:35:58 giovanni Exp $
--- rfc822/rfc822.c.orig Mon Nov 23 04:27:19 2009
+++ rfc822/rfc822.c Tue Jun 29 15:15:32 2010
@@ -627,6 +627,9 @@ static int rfc822_print_common_nameaddr(const struct r
p=(*decode_func)(addrbuf, chset, 1);
free(addrbuf);
+ if (!p)
+ return -1;
+
if (print_braces)
(*print_func)(' ', ptr);
@@ -640,9 +643,6 @@ static int rfc822_print_common_nameaddr(const struct r
if (print_braces)
(*print_func)('<', ptr);
-
- if (!p)
- return -1;
for (addrbuf=p; *p; p++)
(*print_func)(*p, ptr);