openbsd-ports/net/pop3gwd/patches/patch-relay_datac
kevlo 748a3eadcb pop3gwd is an application-level gateway, or proxy, designed to allow
mail retrieval from POP3 servers by systems that either:

	(a) are behind a firewall or screening router OR
	(b) do not have an assigned IP number OR
	(c) must share a SLIP/PPP connection on another system
2000-01-03 02:22:42 +00:00

13 lines
414 B
Plaintext

# $OpenBSD: patch-relay_datac,v 1.1.1.1 2000/01/03 02:22:43 kevlo Exp $
--- relay_data.c.orig Wed Dec 29 12:28:21 1999
+++ relay_data.c Wed Dec 29 12:29:06 1999
@@ -39,7 +39,7 @@
while (logged_in == TRUE) {
- bcopy(&master, &copy, sizeof(fd_set)); /* select() trashes copy */
+ memcpy(&copy, &master, sizeof(fd_set)); /* select() trashes copy */
deadline.tv_sec = maxwait;
deadline.tv_usec = 0;