Commit 676e1128 authored by Steven Fackler's avatar Steven Fackler
Browse files

fix constness

parent b4c735e8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -107,12 +107,12 @@ cfg_if! {
                callback: pem_password_cb,
                user_data: *mut c_void,
            ) -> c_int;
            pub fn PEM_write_bio_DSA_PUBKEY(bp: *mut BIO, dsa: *const DSA) -> c_int;
            pub fn PEM_write_bio_DSA_PUBKEY(bp: *mut BIO, dsa: *mut DSA) -> c_int;
            pub fn PEM_write_bio_PrivateKey(
                bio: *mut BIO,
                pkey: *const EVP_PKEY,
                pkey: *mut EVP_PKEY,
                cipher: *const EVP_CIPHER,
                kstr: *const c_uchar,
                kstr: *mut c_uchar,
                klen: c_int,
                callback: pem_password_cb,
                user_data: *mut c_void,