commit 938a09664fcaa39a7bce5705d796b33f665d291e
parent 524c76820985f2eeb50590b6f6de771f1cbcd130
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Thu, 23 Jun 2022 23:27:40 +0200
remove printf
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/caldav.c b/src/caldav.c
@@ -416,7 +416,6 @@ char* caldav_req(struct tm* date, char* url, char* http_method, char* postfields
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L);
// curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, http_method);
- fprintf(stderr, "caldav_req(): %s\n", url);
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_write_mem_callback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&caldav_resp);