]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
docs: use CURLSSLBACKEND_NONE
authorTed Lyngmo <ted@lyncon.se>
Thu, 21 Sep 2023 10:44:35 +0000 (12:44 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 21 Sep 2023 12:15:03 +0000 (14:15 +0200)
[ssl] use CURLSSLBACKEND_NONE instead of (curl_sslbackend)-1 in
documentation and examples.

Signed-off-by: Ted Lyngmo <ted@lyncon.se>
Closes #11909

docs/examples/sslbackend.c
docs/libcurl/curl_global_sslset.3

index 76744730f29bdcc996cc9c7a8af51e146402b85f..fd2b57534e653822b462db2a33bb0807cef4e3ea 100644 (file)
@@ -49,7 +49,7 @@ int main(int argc, char **argv)
     const curl_ssl_backend **list;
     int i;
 
-    result = curl_global_sslset((curl_sslbackend)-1, NULL, &list);
+    result = curl_global_sslset(CURLSSLBACKEND_NONE, NULL, &list);
     assert(result == CURLSSLSET_UNKNOWN_BACKEND);
 
     for(i = 0; list[i]; i++)
@@ -64,7 +64,7 @@ int main(int argc, char **argv)
     result = curl_global_sslset((curl_sslbackend)id, NULL, NULL);
   }
   else
-    result = curl_global_sslset((curl_sslbackend)-1, name, NULL);
+    result = curl_global_sslset(CURLSSLBACKEND_NONE, name, NULL);
 
   if(result == CURLSSLSET_UNKNOWN_BACKEND) {
     fprintf(stderr, "Unknown SSL backend id: %s\n", name);
index b0ff930df212bcbe4aa6e4ae3560d348af410bc0..af3bae403132bad10a2666e8c243cfc0bfde433c 100644 (file)
@@ -61,8 +61,9 @@ must be called \fBbefore\fP \fIcurl_global_init(3)\fP.
 
 The backend can be identified by the \fIid\fP
 (e.g. \fBCURLSSLBACKEND_OPENSSL\fP). The backend can also be specified via the
-\fIname\fP parameter for a case insensitive match (passing -1 as \fIid\fP). If
-both \fIid\fP and \fIname\fP are specified, the \fIname\fP is ignored.
+\fIname\fP parameter for a case insensitive match (passing
+\fBCURLSSLBACKEND_NONE\fP as \fIid\fP). If both \fIid\fP and \fIname\fP are
+specified, the \fIname\fP is ignored.
 
 If neither \fIid\fP nor \fPname\fP are specified, the function fails with
 \fBCURLSSLSET_UNKNOWN_BACKEND\fP and set the \fIavail\fP pointer to the
@@ -105,7 +106,7 @@ OpenSSL flavor and version number is use.
 
   /* list the available ones */
   const curl_ssl_backend **list;
-  curl_global_sslset((curl_sslbackend)-1, NULL, &list);
+  curl_global_sslset(CURLSSLBACKEND_NONE, NULL, &list);
 
   for(i = 0; list[i]; i++)
     printf("SSL backend #%d: '%s' (ID: %d)\\n",