From 2a4b75842a00cf11b27ea0053f00edfc7dfc5359 Mon Sep 17 00:00:00 2001 From: olszomal Date: Mon, 15 May 2023 12:27:59 +0200 Subject: [PATCH] Add connection logging --- osslsigncode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/osslsigncode.c b/osslsigncode.c index a0fa85b..de2d924 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -557,6 +557,7 @@ static BIO *bio_get_http(long *http_code, char *url, BIO *bout, char *proxy, return NULL; /* FAILED */ } /* Start a libcurl easy session and set options for a curl easy handle */ + printf("Connecting to %s\n", url); curl = curl_easy_init(); if (proxy) { res = curl_easy_setopt(curl, CURLOPT_PROXY, proxy);