Constify some ASN1_OBJECT *obj input parameters
[openssl.git] / doc / crypto / crypto.pod
index 6ed3a90e21aa5b8e49ebd1d8e4a0b8f8f064159c..082f8435b23868f597110fa1dbdb8a8f0a2bce47 100644 (file)
@@ -32,7 +32,7 @@ Some of the newer functions follow a naming convention using the numbers
 B<0> and B<1>. For example the functions:
 
  int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
- int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
+ int X509_add1_trust_object(X509 *x, const ASN1_OBJECT *obj);
 
 The B<0> version uses the supplied structure pointer directly
 in the parent and it will be freed up when the parent is freed.