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

Forgot @ -- thanks thedj

parent aabe5a87
...@@ -222,7 +222,7 @@ static inline int isurlsafe( int c ) ...@@ -222,7 +222,7 @@ static inline int isurlsafe( int c )
* (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.
*/ */
|| ( strchr( "/:.[]-_.", c ) != NULL ); || ( strchr( "/:.[]@-_.", c ) != NULL );
} }
/***************************************************************************** /*****************************************************************************
......
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