aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/ftp/ftp_response.erl
diff options
context:
space:
mode:
authorserge <[email protected]>2012-10-11 23:53:55 -0400
committerIngela Anderton Andin <[email protected]>2014-02-05 10:32:22 +0100
commit023a3b53e6011e05f46013104146fcd6df97fd75 (patch)
tree1201deab2d7b0b53a19998c859ae60934db8d24c /lib/inets/src/ftp/ftp_response.erl
parent86949cb7c32d1c07f9867e49d4fdcc6d47a7d216 (diff)
downloadotp-023a3b53e6011e05f46013104146fcd6df97fd75.tar.gz
otp-023a3b53e6011e05f46013104146fcd6df97fd75.tar.bz2
otp-023a3b53e6011e05f46013104146fcd6df97fd75.zip
Handle correctly the "No files found or file unavailable" error code.
Diffstat (limited to 'lib/inets/src/ftp/ftp_response.erl')
-rw-r--r--lib/inets/src/ftp/ftp_response.erl3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/inets/src/ftp/ftp_response.erl b/lib/inets/src/ftp/ftp_response.erl
index faeacb31ab..364f534737 100644
--- a/lib/inets/src/ftp/ftp_response.erl
+++ b/lib/inets/src/ftp/ftp_response.erl
@@ -162,6 +162,7 @@ error_string(epath) -> "No such file or directory, already exists, "
error_string(etype) -> "No such type.";
error_string(euser) -> "User name or password not valid.";
error_string(etnospc) -> "Insufficient storage space in system.";
+error_string(enofile) -> "No files found or file unavailable";
error_string(epnospc) -> "Exceeded storage allocation "
"(for current directory or dataset).";
error_string(efnamena) -> "File name not allowed.";
@@ -180,6 +181,8 @@ interpret_status(?POS_COMPL,_,_) -> pos_compl;
interpret_status(?POS_INTERM,?AUTH_ACC,2) -> pos_interm_acct;
%% Positive Intermediate Reply
interpret_status(?POS_INTERM,_,_) -> pos_interm;
+%% No files found or file not available
+interpret_status(?TRANS_NEG_COMPL,?FILE_SYSTEM,0) -> enofile;
%% No storage area no action taken
interpret_status(?TRANS_NEG_COMPL,?FILE_SYSTEM,2) -> etnospc;
%% Temporary Error, no action taken