Skip to content

Commit fdf30d5

Browse files
author
Jonas Maier
committed
another fix to see if pipeline passes, should really squash this
1 parent ef70768 commit fdf30d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: openssl-sys/src/handwritten/x509.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ extern "C" {
213213
pub fn X509_ALGOR_new() -> *mut X509_ALGOR;
214214
pub fn X509_ALGOR_free(x: *mut X509_ALGOR);
215215

216-
#[cfg(ossl110)]
216+
#[cfg(ossl101)]
217217
pub fn X509_ALGOR_set_md(alg: *mut X509_ALGOR, md: *const EVP_MD);
218218

219219
pub fn X509_ALGOR_cmp(alg0: *const X509_ALGOR, alg1: *const X509_ALGOR) -> c_int;

Diff for: openssl/src/x509/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2291,7 +2291,7 @@ impl X509AlgorithmRef {
22912291
}
22922292
}
22932293

2294-
#[cfg(ossl110)]
2294+
#[cfg(ossl101)]
22952295
#[corresponds(X509_ALGOR_set_md)]
22962296
pub fn set_md(&mut self, md: MessageDigest) {
22972297
unsafe {

0 commit comments

Comments
 (0)