diff options
author | Hans Nilsson <[email protected]> | 2016-06-28 19:45:56 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-06-29 12:21:20 +0200 |
commit | e0b3bd1c394c2ccf8190cb1c3768c8314d265e5a (patch) | |
tree | 445213c26e7f7f575d81cb2b74df9464664a79d3 | |
parent | c7478ca8549817bb6b20bc0000edb1f00f6fdf6f (diff) | |
download | otp-e0b3bd1c394c2ccf8190cb1c3768c8314d265e5a.tar.gz otp-e0b3bd1c394c2ccf8190cb1c3768c8314d265e5a.tar.bz2 otp-e0b3bd1c394c2ccf8190cb1c3768c8314d265e5a.zip |
inets: unused var in ftp.erl anonymized
-rw-r--r-- | lib/inets/src/ftp/ftp.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/ftp/ftp.erl b/lib/inets/src/ftp/ftp.erl index a57c47e00f..8bad91bf98 100644 --- a/lib/inets/src/ftp/ftp.erl +++ b/lib/inets/src/ftp/ftp.erl @@ -2099,7 +2099,7 @@ handle_ctrl_result({pos_prel, _}, #state{caller = {transfer_data, Bin}} %%-------------------------------------------------------------------------- %% Default -handle_ctrl_result({Status, Lines}, #state{client = From} = State) +handle_ctrl_result({Status, _Lines}, #state{client = From} = State) when From =/= undefined -> ctrl_result_response(Status, State, {error, Status}). |