Merge #914 from branches/eglibc:
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Aug 09 17:45:55 2008 +0000 (2008-08-09)
changeset 775153450c9a9ab
parent 774 77d925a3765a
child 776 d8777ccf522a
Merge #914 from branches/eglibc:
Fix setting the proxy.

/trunk/scripts/functions | 5 3 2 0 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
scripts/functions
     1.1 --- a/scripts/functions	Sat Aug 09 17:44:34 2008 +0000
     1.2 +++ b/scripts/functions	Sat Aug 09 17:45:55 2008 +0000
     1.3 @@ -290,9 +290,10 @@
     1.4  
     1.5  # Set environment for proxy access
     1.6  # Usage: CT_DoSetProxy <proxy_type>
     1.7 -# where proxy_type is one of 'none', 'http', 'sockssys', 'socks4' or 'socks5'
     1.8 +# where proxy_type is one of 'http', 'sockssys', 'socks4' or 'socks5',
     1.9 +# or empty (to not change proxy settings).
    1.10  CT_DoSetProxy() {
    1.11 -    case "${CT_PROXY_TYPE}" in
    1.12 +    case "${1}" in
    1.13          http)
    1.14              http_proxy="http://"
    1.15              case  "${CT_PROXY_USER}:${CT_PROXY_PASS}" in