From: RĂ©mi Denis-Courmont Date: Fri, 12 Aug 2005 19:58:45 +0000 (+0000) Subject: Forgot @ -- thanks thedj X-Git-Tag: 0.8.4~882 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f3c076ec85e716cf736ee33cb8f718154a65fd83;p=vlc Forgot @ -- thanks thedj --- diff --git a/include/network.h b/include/network.h index cf176df4a7..7f859106a1 100644 --- a/include/network.h +++ b/include/network.h @@ -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 ); } /*****************************************************************************