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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;