aboutsummaryrefslogtreecommitdiffstats
path: root/lib/inets/src/http_server/mod_htaccess.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2016-05-16 15:36:56 +0200
committerIngela Anderton Andin <[email protected]>2016-05-16 15:36:56 +0200
commit2076f83e81ab7ca9d1aa1bcf50764abe50035bd7 (patch)
tree3e46c80e4ee855021baf2114d4835d9977533e31 /lib/inets/src/http_server/mod_htaccess.erl
parentf4c71989ae8dc3c290e9236f38543bee0a6a8e77 (diff)
downloadotp-2076f83e81ab7ca9d1aa1bcf50764abe50035bd7.tar.gz
otp-2076f83e81ab7ca9d1aa1bcf50764abe50035bd7.tar.bz2
otp-2076f83e81ab7ca9d1aa1bcf50764abe50035bd7.zip
inets: httpd_util:split does not return {error, Reason}
Fix return value handling that was missed when code was refactored to use re-module.
Diffstat (limited to 'lib/inets/src/http_server/mod_htaccess.erl')
-rw-r--r--lib/inets/src/http_server/mod_htaccess.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_server/mod_htaccess.erl b/lib/inets/src/http_server/mod_htaccess.erl
index 2bc0d79218..7b742bba24 100644
--- a/lib/inets/src/http_server/mod_htaccess.erl
+++ b/lib/inets/src/http_server/mod_htaccess.erl
@@ -412,8 +412,8 @@ getAuthenticatingDataFromHeader(Info)->
case httpd_util:split(UnCodedString,":",2) of
{ok,[User,PassWord]}->
{user,User,PassWord};
- {error,Error}->
- {error,Error}
+ Other ->
+ {error, Other}
end
end;
BadCredentials ->