Skip to content

Commit 62a449c

Browse files
committed
fix typo
1 parent f98474f commit 62a449c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openssl/src/x509/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1868,7 +1868,7 @@ impl X509Crl {
18681868
if #[cfg(any(ossl110, libressl270))] {
18691869
cvt(ffi::X509_CRL_set1_lastUpdate(crl.as_ptr(), Asn1Time::now()?.as_ptr())).map(|_| ())?
18701870
} else {
1871-
cvt(ffi::X509_CRL_set_lastUpdate(crl.as_ptr, Asn1Time::now()?.as_ptr())).map(|_| ())?
1871+
cvt(ffi::X509_CRL_set_lastUpdate(crl.as_ptr(), Asn1Time::now()?.as_ptr())).map(|_| ())?
18721872
}
18731873
);
18741874

0 commit comments

Comments
 (0)