Skip to content

Commit

Permalink
another fix to see if pipeline passes, should really squash this
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Maier committed Aug 29, 2024
1 parent ef70768 commit fdf30d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openssl-sys/src/handwritten/x509.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ extern "C" {
pub fn X509_ALGOR_new() -> *mut X509_ALGOR;
pub fn X509_ALGOR_free(x: *mut X509_ALGOR);

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

pub fn X509_ALGOR_cmp(alg0: *const X509_ALGOR, alg1: *const X509_ALGOR) -> c_int;
Expand Down
2 changes: 1 addition & 1 deletion openssl/src/x509/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2291,7 +2291,7 @@ impl X509AlgorithmRef {
}
}

#[cfg(ossl110)]
#[cfg(ossl101)]
#[corresponds(X509_ALGOR_set_md)]
pub fn set_md(&mut self, md: MessageDigest) {
unsafe {
Expand Down

0 comments on commit fdf30d5

Please sign in to comment.