aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-09-06 15:40:05 +0200
committerHenrik Nord <[email protected]>2011-09-06 15:40:09 +0200
commit22dae863060e0d66fa268f6d1cd4d6f084b850ab (patch)
tree39427c5a47850b3381f7ccf8d686e9bb6990da52 /lib
parent5bdbfa33f7142b888f833b8f2f80cdf2198d9212 (diff)
parent8fcbeefdd3cdd61a46bcdef6ab18389c1c04484f (diff)
downloadotp-22dae863060e0d66fa268f6d1cd4d6f084b850ab.tar.gz
otp-22dae863060e0d66fa268f6d1cd4d6f084b850ab.tar.bz2
otp-22dae863060e0d66fa268f6d1cd4d6f084b850ab.zip
Merge branch 'va/httpd-typo-fix' into dev
* va/httpd-typo-fix: Typofix in httpd_file:handle_error message OTP-9524
Diffstat (limited to 'lib')
-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) ->