diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/x509/x509_req.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/lib/libcrypto/x509/x509_req.c b/src/lib/libcrypto/x509/x509_req.c index 60e1a074b8..1497b1ec16 100644 --- a/src/lib/libcrypto/x509/x509_req.c +++ b/src/lib/libcrypto/x509/x509_req.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_req.c,v 1.34 2024/05/08 07:55:10 tb Exp $ */ | 1 | /* $OpenBSD: x509_req.c,v 1.35 2024/05/08 08:11:50 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -180,17 +180,9 @@ static int ext_nid_list[] = {NID_ext_req, NID_ms_ext_req, NID_undef}; | |||
180 | static int *ext_nids = ext_nid_list; | 180 | static int *ext_nids = ext_nid_list; |
181 | 181 | ||
182 | int | 182 | int |
183 | X509_REQ_extension_nid(int req_nid) | 183 | X509_REQ_extension_nid(int nid) |
184 | { | 184 | { |
185 | int i, nid; | 185 | return nid == NID_ext_req || nid == NID_ms_ext_req; |
186 | |||
187 | for (i = 0; ; i++) { | ||
188 | nid = ext_nids[i]; | ||
189 | if (nid == NID_undef) | ||
190 | return 0; | ||
191 | else if (req_nid == nid) | ||
192 | return 1; | ||
193 | } | ||
194 | } | 186 | } |
195 | LCRYPTO_ALIAS(X509_REQ_extension_nid); | 187 | LCRYPTO_ALIAS(X509_REQ_extension_nid); |
196 | 188 | ||