diff options
author | Micael Karlberg <[email protected]> | 2011-03-18 10:20:16 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-03-18 10:20:16 +0100 |
commit | f10de199e5aad1aecbff03a5e7af9e1c5d017301 (patch) | |
tree | 6f86ef92bdea8a01310cb89703beb1e69c9280bd /lib/inets/src/http_client | |
parent | 5cba72579ad75f85797aae14fde94fca6acf6406 (diff) | |
download | otp-f10de199e5aad1aecbff03a5e7af9e1c5d017301.tar.gz otp-f10de199e5aad1aecbff03a5e7af9e1c5d017301.tar.bz2 otp-f10de199e5aad1aecbff03a5e7af9e1c5d017301.zip |
Fixed debug macro.
Fixed appup file (not updated).
Fixed application version.
Diffstat (limited to 'lib/inets/src/http_client')
-rw-r--r-- | lib/inets/src/http_client/httpc.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_client/httpc.erl b/lib/inets/src/http_client/httpc.erl index c7f8a02a0b..b70b16f57f 100644 --- a/lib/inets/src/http_client/httpc.erl +++ b/lib/inets/src/http_client/httpc.erl @@ -494,10 +494,10 @@ handle_request(Method, Url, end catch error:{noproc, _} -> - ?hcrl("noproc", [{profile, Profile}]), + ?hcrv("noproc", [{profile, Profile}]), {error, {not_started, Profile}}; throw:Error -> - ?hcrl("throw", [{error, Error}]), + ?hcrv("throw", [{error, Error}]), Error end. |