From: RĂ©mi Denis-Courmont Date: Sat, 25 Jun 2005 11:20:53 +0000 (+0000) Subject: Backport getenv bugfix from [11529] X-Git-Tag: 0.8.2~9 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=8ad60e05cdb9509e329ece1d8f4cd5b91306d811;p=vlc Backport getenv bugfix from [11529] --- diff --git a/modules/access/http.c b/modules/access/http.c index 84b7c36c6d..46e8dd434b 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;