summaryrefslogtreecommitdiff
path: root/imap
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-07-19 02:52:35 -0600
committerEduardo Chappa <chappa@washington.edu>2020-07-19 02:52:35 -0600
commit55b383f6efe5a13d54e19317fbf6ec095369189c (patch)
tree2b83c045a5f92babe354f2db5c2490fa2c2ea740 /imap
parentef159279c142ec4f3b3a1938cfeadc74d5891070 (diff)
downloadalpine-55b383f6efe5a13d54e19317fbf6ec095369189c.tar.xz
* Remove the line "#define fork vfork" in imap/src/osdep/unix/os_osx.c, because
the call to vfork inside a vfork causes an error EINVAL; however, the same calls are not causing trouble in other systems, so they are going to stay there. Reported and asisted by Wang Kang.
Diffstat (limited to 'imap')
-rw-r--r--imap/src/osdep/unix/os_osx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/src/osdep/unix/os_osx.c b/imap/src/osdep/unix/os_osx.c
index e09806c2..1788e21f 100644
--- a/imap/src/osdep/unix/os_osx.c
+++ b/imap/src/osdep/unix/os_osx.c
@@ -45,7 +45,7 @@ extern int errno; /* just in case */
#include "ftl_unix.c"
#include "nl_unix.c"
#include "env_unix.c"
-#define fork vfork
+
#include "getspnam.c"
#include "tcp_unix.c"
#include "gr_wait4.c"