]> git.sesse.net Git - vlc/blobdiff - include/network.h
* modules/access/http.c: Do not use vlc_UrlEncode for the same reason
[vlc] / include / network.h
index de146767fec4819a053ab8b0ddf6e1d4e3396fae..ebc712c0393ff73de85f8596a297705fc9756c43 100644 (file)
@@ -222,7 +222,7 @@ static inline int isurlsafe( int c )
          * (even if they are not URL-safe), nor URL-safe characters.
          * We still encode some of them because of Microsoft's crap browser.
          */
-        || ( strchr( "/:.[]@&?-_.", c ) != NULL );
+        || ( strchr( "-_.", c ) != NULL );
 }
 
 /*****************************************************************************