From ef747c490108855815deb0da7f2b3a7f13d3e987 Mon Sep 17 00:00:00 2001 From: Fufu Fang Date: Tue, 24 Jul 2018 16:02:30 +0100 Subject: [PATCH] removed excess debug message --- network.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/network.c b/network.c index 03ed221..eccc406 100644 --- a/network.c +++ b/network.c @@ -328,10 +328,6 @@ static Link *Link_new(const char *p_url, LinkType type) static CURL *Link_to_curl(Link *link) { -#ifdef HTTPDIRFS_INFO - fprintf(stderr, "Link_to_curl(%s);\n", link->f_url); -#endif - CURL *curl = curl_easy_init(); if (!curl) { fprintf(stderr, "Link_to_curl(): curl_easy_init() failed!\n"); @@ -344,7 +340,6 @@ static CURL *Link_to_curl(Link *link) /* for following directories without the '/' */ curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 2); curl_easy_setopt(curl, CURLOPT_URL, link->f_url); - fprintf(stderr, "Link_to_curl(): link->f_url: %s\n", link->f_url); curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1); curl_easy_setopt(curl, CURLOPT_SHARE, curl_share); /*