From: RĂ©mi Denis-Courmont Date: Sat, 25 Jun 2005 13:00:59 +0000 (+0000) Subject: back to http_proxy in lowercase X-Git-Tag: 0.8.2~6 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=421fd5926877699ed9e29451d6857f6045749ede;p=vlc back to http_proxy in lowercase --- diff --git a/modules/access/http.c b/modules/access/http.c index 46e8dd434b..84b7c36c6d 100644 --- a/modules/access/http.c +++ b/modules/access/http.c @@ -278,7 +278,7 @@ static int Open( vlc_object_t *p_this ) #ifdef HAVE_GETENV else { - char *psz_proxy = getenv( "HTTP_PROXY" ); + char *psz_proxy = getenv( "http_proxy" ); if( psz_proxy && *psz_proxy ) { p_sys->b_proxy = VLC_TRUE;