Commit 9964dee4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Oops

parent dc229fda
...@@ -174,7 +174,6 @@ static inline int isurlsafe( int c ) ...@@ -174,7 +174,6 @@ static inline int isurlsafe( int c )
return ( (unsigned char)( c - 'a' ) < 26 ) return ( (unsigned char)( c - 'a' ) < 26 )
|| ( (unsigned char)( c - 'A' ) < 26 ) || ( (unsigned char)( c - 'A' ) < 26 )
|| ( (unsigned char)( c - '0' ) < 10 ) || ( (unsigned char)( c - '0' ) < 10 )
|| ( (unsigned char)( c ) > 127 )
/* Hmm, we should not encode character that are allowed in URLs /* Hmm, we should not encode character that are allowed in URLs
* (even if they are not URL-safe), nor URL-safe characters. * (even if they are not URL-safe), nor URL-safe characters.
* We still encode some of them because of Microsoft's crap browser. * We still encode some of them because of Microsoft's crap browser.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment