summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlosEDP <me@carlosedp.com>2015-07-02 11:59:39 -0300
committerCarlosEDP <me@carlosedp.com>2015-07-03 16:40:29 -0300
commit4a25a4d9d5f968fe2445707e8077a6efda596192 (patch)
tree0d73bf9d6953373b1b7932413eaed6b4676921bc /src
parent38cc32c40afdf8e999d8705501acd7e13918cdc9 (diff)
Renamed functions.
Diffstat (limited to 'src')
-rw-r--r--src/rebar_utils.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl
index 97104ce..2bfe99e 100644
--- a/src/rebar_utils.erl
+++ b/src/rebar_utils.erl
@@ -677,8 +677,8 @@ get_http(Scheme) ->
proplists:get_value(Scheme, get_http_var(), []).
set_httpc_options() ->
- set_httpc_options(https_proxy, get_http(https_proxy)),
- set_httpc_options(proxy, get_http(http_proxy)).
+ set_httpc_options(https_proxy, get_http_vars(https_proxy)),
+ set_httpc_options(proxy, get_http_vars(http_proxy)).
set_httpc_options(_, []) ->
ok;