diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-06 10:57:07 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-06 10:57:07 +0000 |
commit | 58387b91f93a1b439c851813e5ac131375a57f84 (patch) | |
tree | 3b8156c51faf4e7bebb1a3ca186d0919f18118ec | |
parent | 6f74820cfc2319ebd5b52ebfbe90a7ba612923c7 (diff) | |
download | curl-58387b91f93a1b439c851813e5ac131375a57f84.tar.gz |
printf %s with plain 'char *', not unsigned ones to silence icc's picky
warnings
-rw-r--r-- | tests/libtest/lib509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index b6e9ca6dd..54d23e972 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -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; |