svn commit: r506487 - in head/mail/dovecot: . files
Larry Rosenman
ler at FreeBSD.org
Fri Jul 12 19:22:11 UTC 2019
Author: ler
Date: Fri Jul 12 19:22:09 2019
New Revision: 506487
URL: https://svnweb.freebsd.org/changeset/ports/506487
Log:
mail/dovecot: stop spamming the log with EINVAL.
PR: 239172
Submitted by: zillion1 at o2.pl
Obtained from: dovecot mailing list.
Added:
head/mail/dovecot/files/patch-src_lib_ostream-file.c (contents, props changed)
Modified:
head/mail/dovecot/Makefile
Modified: head/mail/dovecot/Makefile
==============================================================================
--- head/mail/dovecot/Makefile Fri Jul 12 17:31:57 2019 (r506486)
+++ head/mail/dovecot/Makefile Fri Jul 12 19:22:09 2019 (r506487)
@@ -8,6 +8,7 @@
PORTNAME= dovecot
PORTVERSION= 2.3.7
+PORTREVISION= 1
CATEGORIES= mail ipv6
MASTER_SITES= https://dovecot.org/releases/2.3/
Added: head/mail/dovecot/files/patch-src_lib_ostream-file.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/mail/dovecot/files/patch-src_lib_ostream-file.c Fri Jul 12 19:22:09 2019 (r506487)
@@ -0,0 +1,11 @@
+--- src/lib/ostream-file.c.orig 2019-07-12 19:18:41 UTC
++++ src/lib/ostream-file.c
+@@ -334,7 +334,7 @@ static void o_stream_tcp_flush_via_nodelay(struct file
+ {
+ if (net_set_tcp_nodelay(fstream->fd, TRUE) < 0) {
+ if (errno != ENOTSUP && errno != ENOTSOCK &&
+- errno != ENOPROTOOPT) {
++ errno != ENOPROTOOPT && errno != EINVAL) {
+ i_error("file_ostream.net_set_tcp_nodelay(%s, TRUE) failed: %m",
+ o_stream_get_name(&fstream->ostream.ostream));
+ }
More information about the svn-ports-all
mailing list