diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-05-08 13:00:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-05-08 15:56:25 +0200 |
commit | c4d6f9163a6b4ae0d2848c1127780f17a4a88810 (patch) | |
tree | 523662028ea607f4560d23ecc768e2bfba77b9a7 /lib/http_proxy.c | |
parent | c720cd6356926c37071370c48cbe1575488cddcc (diff) | |
download | curl-c4d6f9163a6b4ae0d2848c1127780f17a4a88810.tar.gz |
proxy: add newline to info message
Diffstat (limited to 'lib/http_proxy.c')
-rw-r--r-- | lib/http_proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_proxy.c b/lib/http_proxy.c index f3c54bd78..e7d848240 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -281,7 +281,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, /* proxy auth was requested and there was proxy auth available, then deem this as "mere" proxy disconnect */ conn->bits.proxy_connect_closed = TRUE; - infof(data, "Proxy CONNECT connection closed"); + infof(data, "Proxy CONNECT connection closed\n"); } else { error = SELECT_ERROR; |