aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-08-04 17:36:12 +0200
committerLukas Larsson <[email protected]>2014-08-06 14:49:32 +0200
commit6e3f09186e0a5e89eb729840f71e2a73684e9b50 (patch)
treef312cdcba9632b99956b943f6164b81f9161e610 /erts
parent62081266545df8f5eda8e2043f33055cfe575126 (diff)
downloadotp-6e3f09186e0a5e89eb729840f71e2a73684e9b50.tar.gz
otp-6e3f09186e0a5e89eb729840f71e2a73684e9b50.tar.bz2
otp-6e3f09186e0a5e89eb729840f71e2a73684e9b50.zip
erts: Fix tc and docs after {fd,FD} bind change
The sha of the original change is 52810718b
Diffstat (limited to 'erts')
-rw-r--r--erts/emulator/test/driver_SUITE.erl3
1 files changed, 1 insertions, 2 deletions
diff --git a/erts/emulator/test/driver_SUITE.erl b/erts/emulator/test/driver_SUITE.erl
index c62bc0c454..344bde7c91 100644
--- a/erts/emulator/test/driver_SUITE.erl
+++ b/erts/emulator/test/driver_SUITE.erl
@@ -1062,10 +1062,9 @@ otp_6602(Config) when is_list(Config) ->
%% Inet driver use port locking...
{ok, S} = gen_udp:open(0),
{ok, Fd} = inet:getfd(S),
- {ok, Port} = inet:port(S),
%% Steal fd (lock checker used to
%% trigger here).
- {ok, _S2} = gen_udp:open(Port,[{fd,Fd}]),
+ {ok, _S2} = gen_udp:open(0,[{fd,Fd}]),
Parent ! Done
end),
?line receive Done -> ok end,