aboutsummaryrefslogtreecommitdiff
path: root/src/ffi.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-10-08 12:59:19 -0400
committerSteven Fackler <[email protected]>2014-10-08 12:59:19 -0400
commit19eab0e7d729159104a0959c7c1209f1e8951db2 (patch)
treec8964af75d74b97a4ff408d2aaad7510ed2c939b /src/ffi.rs
parentMerge pull request #73 from vhbit/minor-doc-fixes (diff)
parentX509 Generator sample (diff)
downloadrust-openssl-19eab0e7d729159104a0959c7c1209f1e8951db2.tar.xz
rust-openssl-19eab0e7d729159104a0959c7c1209f1e8951db2.zip
Merge pull request #74 from vhbit/doc-samples
X509 Generator sample
Diffstat (limited to 'src/ffi.rs')
-rwxr-xr-xsrc/ffi.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffi.rs b/src/ffi.rs
index 40291869..93a25274 100755
--- a/src/ffi.rs
+++ b/src/ffi.rs
@@ -193,7 +193,7 @@ extern { }
pub unsafe fn BN_is_zero(a: *mut BIGNUM) -> c_int { bn_is_zero(a) }
/* Special import from native/bn_is_zero.c */
-#[link(name="wrapped")]
+#[link(name = "wrapped", kind = "static")]
extern "C" {
pub fn bn_is_zero(a: *mut BIGNUM) -> c_int;
}