nss.c: Fixed compilation warnings (Take Two)

nss.c:702: warning: pointer targets in passing argument 3 of
'Curl_extract_certinfo' differ in signedness

nss.c:702: warning: pointer targets in passing argument 4 of
'Curl_extract_certinfo' differ in signedness

Made sure the cast was correctly "unsigned char *" to "char *" and not
"unsigned char *" to "unsigned char *".
This commit is contained in:
Steve Holme 2013-11-04 12:59:34 +00:00
parent 989b28fe97
commit 90acbfd52e
1 changed files with 2 additions and 4 deletions

View File

@ -696,10 +696,8 @@ static void display_conn_info(struct connectdata *conn, PRFileDesc *sock)
}
Curl_ssl_init_certinfo(conn->data, i);
for(i = 0; cert; cert = cert2) {
Curl_extract_certinfo(conn, i++,
(unsigned char *) cert->derCert.data,
(unsigned char *) cert->derCert.data +
cert->derCert.len);
Curl_extract_certinfo(conn, i++, (char *)cert->derCert.data,
(char *)cert->derCert.data + cert->derCert.len);
if(cert->isRoot) {
CERT_DestroyCertificate(cert);
break;