aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator
diff options
context:
space:
mode:
authorJohn Högberg <[email protected]>2019-04-01 11:17:57 +0200
committerJohn Högberg <[email protected]>2019-04-01 11:17:57 +0200
commit2db15b8dd2af46c51d07dd7635057ab5421afe6d (patch)
treeae1b489dec64028218a9a0cfd92fb4d0874bf8f7 /erts/emulator
parentd7a825fdf0fc63cff67bd35d35c1a6de7c533e55 (diff)
parent261f171079f98c7037309fcb7b2967e9fb79cfe5 (diff)
downloadotp-2db15b8dd2af46c51d07dd7635057ab5421afe6d.tar.gz
otp-2db15b8dd2af46c51d07dd7635057ab5421afe6d.tar.bz2
otp-2db15b8dd2af46c51d07dd7635057ab5421afe6d.zip
Merge branch 'john/kernel/cuddle-file-suite'
* john/kernel/cuddle-file-suite: file_name_SUITE: Darwin 18 broke support for 'icky' names file_SUITE: Ignore EILSEQ on Darwin in +fnu/latin1 test
Diffstat (limited to 'erts/emulator')
-rw-r--r--erts/emulator/beam/erl_posix_str.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_posix_str.c b/erts/emulator/beam/erl_posix_str.c
index 7b3e640d3f..5b515d6e78 100644
--- a/erts/emulator/beam/erl_posix_str.c
+++ b/erts/emulator/beam/erl_posix_str.c
@@ -171,6 +171,9 @@ erl_errno_id(error)
#if defined(EIDRM) && (!defined(EINPROGRESS) || (EIDRM != EINPROGRESS))
case EIDRM: return "eidrm";
#endif
+#ifdef EILSEQ
+ case EILSEQ: return "eilseq";
+#endif
#ifdef EINIT
case EINIT: return "einit";
#endif