mirror of
https://github.com/curl/curl.git
synced 2025-09-20 11:02:42 +03:00
CURLINFO_CERTINFO.3: fix typo
Closes https://github.com/curl/curl/pull/5655
This commit is contained in:
parent
69bfde4515
commit
963d17add2
|
@ -27,10 +27,10 @@ CURLINFO_CERTINFO \- get the TLS certificate chain
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
|
||||||
CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_CERTINFO,
|
CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_CERTINFO,
|
||||||
struct curl_certinfo *chainp);
|
struct curl_certinfo **chainp);
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
Pass a pointer to a 'struct curl_certinfo *' and you'll get it set to point to
|
Pass a pointer to a 'struct curl_certinfo *' and you'll get it set to point to
|
||||||
struct that holds a number of linked lists with info about the certificate
|
a struct that holds a number of linked lists with info about the certificate
|
||||||
chain, assuming you had \fICURLOPT_CERTINFO(3)\fP enabled when the request was
|
chain, assuming you had \fICURLOPT_CERTINFO(3)\fP enabled when the request was
|
||||||
made. The struct reports how many certs it found and then you can extract info
|
made. The struct reports how many certs it found and then you can extract info
|
||||||
for each of those certs by following the linked lists. The info chain is
|
for each of those certs by following the linked lists. The info chain is
|
||||||
|
|
Loading…
Reference in New Issue
Block a user