summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Nilsson <hans@erlang.org>2013-11-12 20:17:43 +0100
committerIngela Anderton Andin <ingela@erlang.org>2014-02-05 10:32:26 +0100
commitd211a8e51d5c578508a63fc8a5d0e8675f4f749c (patch)
tree9f671bbe7497a7779502d25c8b2bb04a03e24a69
parentea05af7cdee9d9ab7260fcda20f118d4f250136e (diff)
downloaderlang-d211a8e51d5c578508a63fc8a5d0e8675f4f749c.tar.gz
.
-rw-r--r--lib/inets/src/ftp/ftp.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/inets/src/ftp/ftp.erl b/lib/inets/src/ftp/ftp.erl
index b81ac16cd1..b6a38758b2 100644
--- a/lib/inets/src/ftp/ftp.erl
+++ b/lib/inets/src/ftp/ftp.erl
@@ -1688,6 +1688,7 @@ handle_ctrl_result({pos_compl, Lines},
string:tokens(NewPortAddr, [$,])),
IP = {A1, A2, A3, A4},
Port = (P1 * 256) + P2,
+io:format('tcp connect to ~p:~p, Caller=~p~n',[IP,Port,Caller]),
case connect(IP, Port, Timeout, State) of
{ok, _, Socket} ->
handle_caller(State#state{caller = Caller, dsock = {tcp,Socket}});