Browse Source

Merge branch 'to_hex_fix' of git://github.com/matthias-endler/cowboy

Loïc Hoguin 11 years ago
parent
commit
02a04b1a56
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/cowboy_http.erl

+ 2 - 2
src/cowboy_http.erl

@@ -1030,11 +1030,11 @@ urlencode(<<>>, Acc, _Plus, _Upper) ->
 
 -spec tohexu(byte()) -> byte().
 tohexu(C) when C < 10 -> $0 + C;
-tohexu(C) when C < 17 -> $A + C - 10.
+tohexu(C) when C < 16 -> $A + C - 10.
 
 -spec tohexl(byte()) -> byte().
 tohexl(C) when C < 10 -> $0 + C;
-tohexl(C) when C < 17 -> $a + C - 10.
+tohexl(C) when C < 16 -> $a + C - 10.
 
 %% Tests.