diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-03-13 10:20:56 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-03-13 10:20:56 +0000 |
commit | b005e20691c44544265fa98961c62cad7cf8dfc7 (patch) | |
tree | d7a8ef82920b98291e18804067bc3d58d2a82456 /mail | |
parent | Update to 1.2.0. (diff) |
Fix error check which cause problems with local mail delivery and
bump PORTREVISION.
PR: 35835
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=55990
Diffstat (limited to 'mail')
-rw-r--r-- | mail/claws-mail/Makefile | 1 | ||||
-rw-r--r-- | mail/claws-mail/files/patch-src-send.c | 11 | ||||
-rw-r--r-- | mail/sylpheed-claws/Makefile | 1 | ||||
-rw-r--r-- | mail/sylpheed-claws/files/patch-src-send.c | 11 |
4 files changed, 24 insertions, 0 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile index bbf5ed56dab5..b17c0a8d213f 100644 --- a/mail/claws-mail/Makefile +++ b/mail/claws-mail/Makefile @@ -7,6 +7,7 @@ PORTNAME= sylpheed-claws PORTVERSION= 0.7.4 +PORTREVISION= 1 CATEGORIES= mail news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sylpheed-claws diff --git a/mail/claws-mail/files/patch-src-send.c b/mail/claws-mail/files/patch-src-send.c new file mode 100644 index 000000000000..d111334248cb --- /dev/null +++ b/mail/claws-mail/files/patch-src-send.c @@ -0,0 +1,11 @@ +--- src/send.c 10 Mar 2002 14:09:59 -0000 1.26 ++++ src/send.c 13 Mar 2002 00:41:07 -0000 +@@ -234,7 +234,7 @@ + } + + r = pclose(pipefp); +- if (r != 0) { ++ if (r > 0) { + g_warning(_("external command failed: %s\n"), command); + return -1; + } diff --git a/mail/sylpheed-claws/Makefile b/mail/sylpheed-claws/Makefile index bbf5ed56dab5..b17c0a8d213f 100644 --- a/mail/sylpheed-claws/Makefile +++ b/mail/sylpheed-claws/Makefile @@ -7,6 +7,7 @@ PORTNAME= sylpheed-claws PORTVERSION= 0.7.4 +PORTREVISION= 1 CATEGORIES= mail news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sylpheed-claws diff --git a/mail/sylpheed-claws/files/patch-src-send.c b/mail/sylpheed-claws/files/patch-src-send.c new file mode 100644 index 000000000000..d111334248cb --- /dev/null +++ b/mail/sylpheed-claws/files/patch-src-send.c @@ -0,0 +1,11 @@ +--- src/send.c 10 Mar 2002 14:09:59 -0000 1.26 ++++ src/send.c 13 Mar 2002 00:41:07 -0000 +@@ -234,7 +234,7 @@ + } + + r = pclose(pipefp); +- if (r != 0) { ++ if (r > 0) { + g_warning(_("external command failed: %s\n"), command); + return -1; + } |