From 66ffb8a3710110244ecc099a83f14d44bdea5be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Mon, 24 Jun 2002 12:18:41 +0000 Subject: [PATCH] Reintroduce debugging code that somehow got lost in a previous revision. --- lib/libfetch/common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libfetch/common.c b/lib/libfetch/common.c index 2ebb29661f6..cb69ec0f008 100644 --- a/lib/libfetch/common.c +++ b/lib/libfetch/common.c @@ -506,6 +506,8 @@ _fetch_write(conn_t *conn, const char *buf, size_t len) int _fetch_putln(conn_t *conn, const char *str, size_t len) { + + DEBUG(fprintf(stderr, ">>> %s\n", str)); if (_fetch_write(conn, str, len) == -1 || _fetch_write(conn, ENDL, sizeof ENDL) == -1) return (-1);