Skip to content
Snippets Groups Projects
Commit 58387b91 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

printf %s with plain 'char *', not unsigned ones to silence icc's picky

warnings
parent 6f74820c
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ static int ssl_app_verify_callback(X509_STORE_CTX *ctx, void *arg)
if (strcmp((char *)p->accessinfoURL, (char *)accessinfoURL)) {
fprintf(stderr, "Setting URL <%s>, was <%s>\n",
accessinfoURL,p->accessinfoURL);
(char *)accessinfoURL, (char *)p->accessinfoURL);
OPENSSL_free(p->accessinfoURL);
p->accessinfoURL = accessinfoURL;
curl_easy_setopt(p->curl, CURLOPT_URL,p->accessinfoURL);
......@@ -179,7 +179,7 @@ int test(char *URL)
curl_easy_setopt(p.curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_easy_setopt(p.curl, CURLOPT_SSL_VERIFYHOST, 1);
fprintf(stderr,"Going to perform %s\n",p.accessinfoURL);
fprintf(stderr, "Going to perform %s\n", (char *)p.accessinfoURL);
{
CURLMcode res;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment