Fix signedness issue

This commit is contained in:
Noah 2020-03-23 10:17:02 -05:00
parent 8cfb59b9ea
commit dfb3cb9579
No known key found for this signature in database
GPG Key ID: E8C14146AE337195
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ cfg_if! {
stack!(stack_st_X509);
pub type X509_LOOKUP_TYPE = i32;
pub type X509_LOOKUP_TYPE = u32;
pub const X509_LU_NONE: X509_LOOKUP_TYPE = 0;
pub const X509_LU_X509: X509_LOOKUP_TYPE = 1;
pub const X509_LU_CRL: X509_LOOKUP_TYPE = 2;