mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 07:40:40 -04:00
Particularly, pull the necessary parts of three upstream patches to fix some annoying regressions discovered after the release went gold. While here, chase HTTP/1.1 301 Moved Permanently redirection in the WWW line of the port description. Prodded by: maintainer
14 lines
321 B
C
14 lines
321 B
C
--- libmailutils/stream/streamcpy.c.orig 2022-02-12 15:20:43 UTC
|
|
+++ libmailutils/stream/streamcpy.c
|
|
@@ -55,7 +55,11 @@ mu_stream_copy_wcb (mu_stream_t dst, mu_stream_t src,
|
|
case 0:
|
|
break;
|
|
|
|
+ case EAGAIN:
|
|
+ case EINTR:
|
|
case ENOSYS:
|
|
+ case EINPROGRESS:
|
|
+ case MU_ERR_INFO_UNAVAILABLE:
|
|
size = 0;
|
|
break;
|
|
|