diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-12-17 23:47:01 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-12-19 09:32:54 +0100 |
commit | 583a9027895d65744f03ce28998adbe6b41c49a7 (patch) | |
tree | d2e43eeab6438eece61a8376e691d6731af85347 | |
parent | 7b8590d1f5bc332ad49300c698a7992939eb05a9 (diff) |
Curl_proxyCONNECT: use newlines in debug output
-rw-r--r-- | lib/http_proxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/http_proxy.c b/lib/http_proxy.c index f3b02c975..fbf23a9d8 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -202,11 +202,11 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, else { DEBUGF(infof(data, "Multi mode finished polling for response from " - "proxy CONNECT.")); + "proxy CONNECT\n")); } } else { - DEBUGF(infof(data, "Easy mode waiting response from proxy CONNECT.")); + DEBUGF(infof(data, "Easy mode waiting response from proxy CONNECT\n")); } /* at this point, either: |