aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/http_server/httpd_file.erl
diff options
context:
space:
mode:
authorAndrás Veres-Szentkirályi <[email protected]>2011-08-25 13:57:51 +0300
committerAndrás Veres-Szentkirályi <[email protected]>2011-08-25 13:57:51 +0300
commit8fcbeefdd3cdd61a46bcdef6ab18389c1c04484f (patch)
treed031c6bdab36c55777def06d7bda49d91dea2b80 /lib/inets/src/http_server/httpd_file.erl
parentd48eaa0731017e5cdadca0af77ac14cd949b6c67 (diff)
downloadotp-8fcbeefdd3cdd61a46bcdef6ab18389c1c04484f.tar.gz
otp-8fcbeefdd3cdd61a46bcdef6ab18389c1c04484f.tar.bz2
otp-8fcbeefdd3cdd61a46bcdef6ab18389c1c04484f.zip
Typofix in httpd_file:handle_error message
Diffstat (limited to 'lib/inets/src/http_server/httpd_file.erl')
-rw-r--r--lib/inets/src/http_server/httpd_file.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/http_server/httpd_file.erl b/lib/inets/src/http_server/httpd_file.erl
index ccc1f7874a..e8a8ab6411 100644
--- a/lib/inets/src/http_server/httpd_file.erl
+++ b/lib/inets/src/http_server/httpd_file.erl
@@ -33,7 +33,7 @@ handle_error(enotdir, Op, ModData, Path) ->
handle_error(404, Op, ModData, Path,
": A component of the file name is not a directory");
handle_error(emfile, Op, _ModData, Path) ->
- handle_error(500, Op, none, Path, ": To many open files");
+ handle_error(500, Op, none, Path, ": Too many open files");
handle_error({enfile,_}, Op, _ModData, Path) ->
handle_error(500, Op, none, Path, ": File table overflow");
handle_error(_Reason, Op, ModData, Path) ->