diff options
author | Ingela Anderton Andin <[email protected]> | 2013-01-24 16:51:42 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2013-01-25 09:22:20 +0100 |
commit | 089f235dd2c2945a63383e79e02616c1a99b50a6 (patch) | |
tree | 00c47ade0de558d12a23accc01fafdddf6251b46 /lib/ssh/src/ssh_sftp.erl | |
parent | 0ab216f3dc96890b50f7430895ad5d7f6251f129 (diff) | |
download | otp-089f235dd2c2945a63383e79e02616c1a99b50a6.tar.gz otp-089f235dd2c2945a63383e79e02616c1a99b50a6.tar.bz2 otp-089f235dd2c2945a63383e79e02616c1a99b50a6.zip |
ssh: Fix dialyzer and doc warnings
Diffstat (limited to 'lib/ssh/src/ssh_sftp.erl')
-rw-r--r-- | lib/ssh/src/ssh_sftp.erl | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_sftp.erl b/lib/ssh/src/ssh_sftp.erl index f000558100..f3afbe01bf 100644 --- a/lib/ssh/src/ssh_sftp.erl +++ b/lib/ssh/src/ssh_sftp.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2005-2011. All Rights Reserved. +%% Copyright Ericsson AB 2005-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -47,7 +47,7 @@ recv_window/2, list_dir/3, read_file/3, write_file/4]). %% ssh_channel callbacks --export([init/1, handle_call/3, handle_msg/2, handle_ssh_msg/2, terminate/2]). +-export([init/1, handle_call/3, handle_cast/2, code_change/3, handle_msg/2, handle_ssh_msg/2, terminate/2]). %% TODO: Should be placed elsewhere ssh_sftpd should not call functions in ssh_sftp! -export([info_to_attr/1, attr_to_info/1]). @@ -436,6 +436,12 @@ handle_call({{timeout, Timeout}, Msg}, From, #state{req_id = Id} = State) -> timer:send_after(Timeout, {timeout, Id, From}), do_handle_call(Msg, From, State). +handle_cast(_,State) -> + {noreply, State}. + +code_change(_OldVsn, State, _Extra) -> + {ok, State}. + do_handle_call({open, Async,FileName,Mode}, From, #state{xf = XF} = State) -> {Access,Flags,Attrs} = open_mode(XF#ssh_xfer.vsn, Mode), ReqID = State#state.req_id, |