opnsense-ports/mail/popular/files/patch-src-io.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

12 lines
476 B
C

--- src/io.c.orig Sat Aug 21 12:19:29 2004
+++ src/io.c Mon Jul 11 16:16:50 2005
@@ -307,7 +307,8 @@
* A null byte was encountered in input from a network socket. This
* can never happen in a normal POP3 connection. */
xlog_printf(xlog_adm, 0x0035, "null_byte_in_input ctx='%s' len=%d data='%s'", ioc->io_desc, len, buf);
- errno = EPROTO;
+ /* Uh oh, nice to overload socket errcos for application level signalization */
+ errno = EPIPE;
return -1;
}
}