Commit 5980b3cb authored by Yang Tse's avatar Yang Tse
Browse files

fix compiler warning: conversion from `pointer to void' to `pointer to int

function(pointer to char,int,int,pointer to void)' is compiler dependent
parent 10074bfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1698,7 +1698,7 @@ static CURLcode servercert(struct connectdata *conn,
	connssl->server_cert = NULL;
	return CURLE_SSL_ISSUER_ERROR;
      }
      issuer = PEM_read_X509(fp,NULL,NULL,NULL);
      issuer = PEM_read_X509(fp,NULL,ZERO_NULL,NULL);
      if (!issuer) {
        if (strict)
	  failf(data, "SSL: Unable to read issuer cert (%s)\n",