diff options
author | Micael Karlberg <[email protected]> | 2011-10-26 12:20:29 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-10-26 12:20:29 +0200 |
commit | 1577983b9b3883b74e3e460ed4f8f6916ffaa3a5 (patch) | |
tree | 2986bd8b98369c69d36957c674a965839b6f9d28 /lib/inets/src/http_server/httpd_util.erl | |
parent | 500557baeab33eb1999d34910aa2bb76a0e38f48 (diff) | |
download | otp-1577983b9b3883b74e3e460ed4f8f6916ffaa3a5.tar.gz otp-1577983b9b3883b74e3e460ed4f8f6916ffaa3a5.tar.bz2 otp-1577983b9b3883b74e3e460ed4f8f6916ffaa3a5.zip |
Fixed hex-decoding.
OTP-9655
Diffstat (limited to 'lib/inets/src/http_server/httpd_util.erl')
-rw-r--r-- | lib/inets/src/http_server/httpd_util.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/src/http_server/httpd_util.erl b/lib/inets/src/http_server/httpd_util.erl index 2e0752bcc0..366843354e 100644 --- a/lib/inets/src/http_server/httpd_util.erl +++ b/lib/inets/src/http_server/httpd_util.erl @@ -183,7 +183,7 @@ message(400, none, _) -> "Your browser sent a query that this server could not understand. "; message(400, Msg, _) -> "Your browser sent a query that this server could not understand. " ++ - html_encode(http_uri:decode(Msg)); + html_encode(Msg); message(401, none, _) -> "This server could not verify that you are authorized to access the document you |