diff options
author | schwarze <> | 2018-05-19 22:37:10 +0000 |
---|---|---|
committer | schwarze <> | 2018-05-19 22:37:10 +0000 |
commit | 13b3aaf6ade4d330441f96a9e5bed4d4ad5a5764 (patch) | |
tree | 58783c10fd2ba01298fec91cf5dc2a520d9ee956 | |
parent | 8d531cd2a0b46fd39eb091d723bd619616132982 (diff) | |
download | openbsd-13b3aaf6ade4d330441f96a9e5bed4d4ad5a5764.tar.gz openbsd-13b3aaf6ade4d330441f96a9e5bed4d4ad5a5764.tar.bz2 openbsd-13b3aaf6ade4d330441f96a9e5bed4d4ad5a5764.zip |
In x509.h rev. 1.61 2018/05/18 18:37:23 and rev. 1.65 2018/05/18 19:28:27,
tb@ added const qualifiers to the pointer arguments of some X509_get_ext*(3)
and X509_REVOKED_get_ext*(3) functions. Adjust the manual.
-rw-r--r-- | src/lib/libcrypto/man/X509v3_get_ext_by_NID.3 | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/lib/libcrypto/man/X509v3_get_ext_by_NID.3 b/src/lib/libcrypto/man/X509v3_get_ext_by_NID.3 index 0cecbacac9..d823c0b4ef 100644 --- a/src/lib/libcrypto/man/X509v3_get_ext_by_NID.3 +++ b/src/lib/libcrypto/man/X509v3_get_ext_by_NID.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: X509v3_get_ext_by_NID.3,v 1.8 2018/05/13 14:13:08 schwarze Exp $ | 1 | .\" $OpenBSD: X509v3_get_ext_by_NID.3,v 1.9 2018/05/19 22:37:10 schwarze Exp $ |
2 | .\" OpenSSL c952780c Jun 21 07:03:34 2016 -0400 | 2 | .\" OpenSSL c952780c Jun 21 07:03:34 2016 -0400 |
3 | .\" | 3 | .\" |
4 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. | 4 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. |
@@ -48,7 +48,7 @@ | |||
48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 48 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 49 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
50 | .\" | 50 | .\" |
51 | .Dd $Mdocdate: May 13 2018 $ | 51 | .Dd $Mdocdate: May 19 2018 $ |
52 | .Dt X509V3_GET_EXT_BY_NID 3 | 52 | .Dt X509V3_GET_EXT_BY_NID 3 |
53 | .Os | 53 | .Os |
54 | .Sh NAME | 54 | .Sh NAME |
@@ -123,28 +123,28 @@ | |||
123 | .Fc | 123 | .Fc |
124 | .Ft int | 124 | .Ft int |
125 | .Fo X509_get_ext_count | 125 | .Fo X509_get_ext_count |
126 | .Fa "X509 *x" | 126 | .Fa "const X509 *x" |
127 | .Fc | 127 | .Fc |
128 | .Ft X509_EXTENSION * | 128 | .Ft X509_EXTENSION * |
129 | .Fo X509_get_ext | 129 | .Fo X509_get_ext |
130 | .Fa "X509 *x" | 130 | .Fa "const X509 *x" |
131 | .Fa "int loc" | 131 | .Fa "int loc" |
132 | .Fc | 132 | .Fc |
133 | .Ft int | 133 | .Ft int |
134 | .Fo X509_get_ext_by_NID | 134 | .Fo X509_get_ext_by_NID |
135 | .Fa "X509 *x" | 135 | .Fa "const X509 *x" |
136 | .Fa "int nid" | 136 | .Fa "int nid" |
137 | .Fa "int lastpos" | 137 | .Fa "int lastpos" |
138 | .Fc | 138 | .Fc |
139 | .Ft int | 139 | .Ft int |
140 | .Fo X509_get_ext_by_OBJ | 140 | .Fo X509_get_ext_by_OBJ |
141 | .Fa "X509 *x" | 141 | .Fa "const X509 *x" |
142 | .Fa "ASN1_OBJECT *obj" | 142 | .Fa "const ASN1_OBJECT *obj" |
143 | .Fa "int lastpos" | 143 | .Fa "int lastpos" |
144 | .Fc | 144 | .Fc |
145 | .Ft int | 145 | .Ft int |
146 | .Fo X509_get_ext_by_critical | 146 | .Fo X509_get_ext_by_critical |
147 | .Fa "X509 *x" | 147 | .Fa "const X509 *x" |
148 | .Fa "int crit" | 148 | .Fa "int crit" |
149 | .Fa "int lastpos" | 149 | .Fa "int lastpos" |
150 | .Fc | 150 | .Fc |
@@ -199,28 +199,28 @@ | |||
199 | .Fc | 199 | .Fc |
200 | .Ft int | 200 | .Ft int |
201 | .Fo X509_REVOKED_get_ext_count | 201 | .Fo X509_REVOKED_get_ext_count |
202 | .Fa "X509_REVOKED *x" | 202 | .Fa "const X509_REVOKED *x" |
203 | .Fc | 203 | .Fc |
204 | .Ft X509_EXTENSION * | 204 | .Ft X509_EXTENSION * |
205 | .Fo X509_REVOKED_get_ext | 205 | .Fo X509_REVOKED_get_ext |
206 | .Fa "X509_REVOKED *x" | 206 | .Fa "const X509_REVOKED *x" |
207 | .Fa "int loc" | 207 | .Fa "int loc" |
208 | .Fc | 208 | .Fc |
209 | .Ft int | 209 | .Ft int |
210 | .Fo X509_REVOKED_get_ext_by_NID | 210 | .Fo X509_REVOKED_get_ext_by_NID |
211 | .Fa "X509_REVOKED *x" | 211 | .Fa "const X509_REVOKED *x" |
212 | .Fa "int nid" | 212 | .Fa "int nid" |
213 | .Fa "int lastpos" | 213 | .Fa "int lastpos" |
214 | .Fc | 214 | .Fc |
215 | .Ft int | 215 | .Ft int |
216 | .Fo X509_REVOKED_get_ext_by_OBJ | 216 | .Fo X509_REVOKED_get_ext_by_OBJ |
217 | .Fa "X509_REVOKED *x" | 217 | .Fa "const X509_REVOKED *x" |
218 | .Fa "ASN1_OBJECT *obj" | 218 | .Fa "const ASN1_OBJECT *obj" |
219 | .Fa "int lastpos" | 219 | .Fa "int lastpos" |
220 | .Fc | 220 | .Fc |
221 | .Ft int | 221 | .Ft int |
222 | .Fo X509_REVOKED_get_ext_by_critical | 222 | .Fo X509_REVOKED_get_ext_by_critical |
223 | .Fa "X509_REVOKED *x" | 223 | .Fa "const X509_REVOKED *x" |
224 | .Fa "int crit" | 224 | .Fa "int crit" |
225 | .Fa "int lastpos" | 225 | .Fa "int lastpos" |
226 | .Fc | 226 | .Fc |