rename variable in docs to avoid exclusion

This commit is contained in:
Viktor Szakats 2025-07-12 11:00:42 +02:00
parent 2ebda6fa20
commit 5f5139e5ac
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
6 changed files with 11 additions and 11 deletions

View file

@ -49,12 +49,12 @@ NULL
#include <curl/curl.h>
#include <stdio.h>
static CURLcode sslctx_function(CURL *curl, void *sslctx, void *parm)
static CURLcode sslctx_function(CURL *curl, void *sslctx, void *pointer)
{
X509_STORE *store;
X509 *cert = NULL;
BIO *bio;
char *mypem = parm;
char *mypem = pointer;
/* get a BIO */
bio = BIO_new_mem_buf(mypem, -1);
/* use it to read the PEM formatted certificate from memory into an

View file

@ -100,12 +100,12 @@ NULL
#include <curl/curl.h>
#include <stdio.h>
static CURLcode sslctx_function(CURL *curl, void *sslctx, void *parm)
static CURLcode sslctx_function(CURL *curl, void *sslctx, void *pointer)
{
X509_STORE *store;
X509 *cert = NULL;
BIO *bio;
char *mypem = parm;
char *mypem = pointer;
/* get a BIO */
bio = BIO_new_mem_buf(mypem, -1);
/* use it to read the PEM formatted certificate from memory into an