aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface/src/misc
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2019-06-19 10:26:00 +0200
committerGitHub <[email protected]>2019-06-19 10:26:00 +0200
commit8c1d7e7c1e8d5cc207d80074b14dcbc2b3a32ba8 (patch)
tree718d423ddd3607e7f944171c6439218f78420445 /lib/erl_interface/src/misc
parent5da818c743e619a74eb70073d4d092374fbe79a4 (diff)
parente414c818360911ab759cef6a08b3ed133f3208ae (diff)
downloadotp-8c1d7e7c1e8d5cc207d80074b14dcbc2b3a32ba8.tar.gz
otp-8c1d7e7c1e8d5cc207d80074b14dcbc2b3a32ba8.tar.bz2
otp-8c1d7e7c1e8d5cc207d80074b14dcbc2b3a32ba8.zip
Merge pull request #2110 from NattyNarwhal/aix-fixes/OTP-15866
Wake AIX up from coma
Diffstat (limited to 'lib/erl_interface/src/misc')
-rw-r--r--lib/erl_interface/src/misc/ei_portio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/erl_interface/src/misc/ei_portio.c b/lib/erl_interface/src/misc/ei_portio.c
index bccc86c1b1..bfe67a732c 100644
--- a/lib/erl_interface/src/misc/ei_portio.c
+++ b/lib/erl_interface/src/misc/ei_portio.c
@@ -622,7 +622,7 @@ int ei_accept_ctx_t__(ei_socket_callbacks *cbs, void **ctx,
} while (error == EINTR);
}
do {
- error = cbs->accept(ctx, addr, len, ms);
+ error = cbs->EI_ACCEPT_NAME(ctx, addr, len, ms);
} while (error == EINTR);
return error;
}