Fix that too

This commit is contained in:
Simon MacMullen 2012-11-01 14:29:41 +00:00
parent 614500b96d
commit 4a20e39580
1 changed files with 1 additions and 1 deletions

View File

@ -262,7 +262,7 @@ find_conn_by_local_port(Port, Items) ->
[Conn] = lists:filter(
fun(Conn) ->
pget(peer_port, Conn) == Port andalso
pget(peer_address, Conn) == <<"127.0.0.1">>
pget(peer_host, Conn) == <<"127.0.0.1">>
end, Items),
Conn.