aboutsummaryrefslogtreecommitdiff
path: root/src/IO/http.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-04-07 18:55:14 +0200
committerjcid <devnull@localhost>2008-04-07 18:55:14 +0200
commit9388b5d4464d13117bcaad1fda1a1b7ebd8d0264 (patch)
tree8bb52fd9a34f8acd996eff309635b64594917f12 /src/IO/http.c
parent56583b97209336f87a46bb1c2bd18a75b9fc588f (diff)
- Added dStr_printable() to dlib.
Diffstat (limited to 'src/IO/http.c')
-rw-r--r--src/IO/http.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/IO/http.c b/src/IO/http.c
index 8ccb015c..a6acc031 100644
--- a/src/IO/http.c
+++ b/src/IO/http.c
@@ -278,8 +278,7 @@ Dstr *a_Http_make_query_str(const DilloUrl *url, bool_t use_proxy)
dStr_free(s_port, TRUE);
dStr_free(full_path, TRUE);
dStr_free(proxy_auth, TRUE);
- /* debug msg will fail on embedded NULLs */
- DEBUG_MSG(4, "Query:\n%s", query->str);
+ DEBUG_MSG(4, "Query:\n%s\n", dStr_printable(query, 8192));
return query;
}