aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2011-09-19 19:16:30 +0200
committerMicael Karlberg <[email protected]>2011-09-19 19:16:30 +0200
commit1fd7edb98877afdf8e044ee8f4f3c1f9fca371ce (patch)
tree15977b96fff8132c6b1e3b7fe24bd3866329013f /lib/inets/src
parent4fc04c07304185e0b7c479a60c25f191b24b54b5 (diff)
downloadotp-1fd7edb98877afdf8e044ee8f4f3c1f9fca371ce.tar.gz
otp-1fd7edb98877afdf8e044ee8f4f3c1f9fca371ce.tar.bz2
otp-1fd7edb98877afdf8e044ee8f4f3c1f9fca371ce.zip
Fixed release notes, version and cosmetics in source.
Diffstat (limited to 'lib/inets/src')
-rw-r--r--lib/inets/src/http_server/httpd_request.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_server/httpd_request.erl b/lib/inets/src/http_server/httpd_request.erl
index d2d354d17d..90f8bdd912 100644
--- a/lib/inets/src/http_server/httpd_request.erl
+++ b/lib/inets/src/http_server/httpd_request.erl
@@ -312,8 +312,8 @@ validate_uri(RequestURI) ->
{'EXIT',_Reason} ->
{error, {bad_request, {malformed_syntax, RequestURI}}};
_ ->
- Path = format_request_uri(UriNoQueryNoHex),
- Path2=[X||X<-string:tokens(Path, "/\\"),X=/="."], %% OTP-5938
+ Path = format_request_uri(UriNoQueryNoHex),
+ Path2 = [X||X<-string:tokens(Path, "/\\"),X=/="."],
validate_path( Path2,0, RequestURI)
end.