diff options
author | Henrik Nord <[email protected]> | 2011-09-06 15:43:45 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-09-06 15:43:45 +0200 |
commit | afa7e184442220adfe434ee3b04e1dcc85bc4a32 (patch) | |
tree | ff0bbccc971f92dceefad4c2cb4242a88ab2d69b | |
parent | 684f1b321c8c4d07edee23737e178976af051913 (diff) | |
parent | 22dae863060e0d66fa268f6d1cd4d6f084b850ab (diff) | |
download | otp-afa7e184442220adfe434ee3b04e1dcc85bc4a32.tar.gz otp-afa7e184442220adfe434ee3b04e1dcc85bc4a32.tar.bz2 otp-afa7e184442220adfe434ee3b04e1dcc85bc4a32.zip |
Merge branch 'dev' into major
-rw-r--r-- | lib/inets/src/http_server/httpd_file.erl | 2 |
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) -> |