fix ptr types

This commit is contained in:
Benjamin Fry 2017-01-22 22:43:27 -08:00
parent 225552b823
commit 540387d5ee
1 changed files with 3 additions and 3 deletions

View File

@ -1977,9 +1977,9 @@ extern {
pub fn d2i_PKCS12(a: *mut *mut PKCS12, pp: *mut *const u8, length: c_long) -> *mut PKCS12;
pub fn PKCS12_create(pass: *const c_char,
friendly_name: *const c_char,
pkey: *const EVP_PKEY,
cert: *const X509,
ca: *const stack_st_X509,
pkey: *mut EVP_PKEY,
cert: *mut X509,
ca: *mut stack_st_X509,
nid_key: c_int,
nid_cert: c_int,
iter: c_int,