aboutsummaryrefslogtreecommitdiff
path: root/crypto/hmac.rs
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-04-06 21:15:15 -0700
committerSteven Fackler <[email protected]>2014-04-06 21:15:15 -0700
commita145df011cc7ed7fbff37227192427a11c6d3923 (patch)
treea94c5e7724c8adff6a83d05584c4a3d3f0d93df4 /crypto/hmac.rs
parentRemove use of {:?} (diff)
downloadrust-openssl-a145df011cc7ed7fbff37227192427a11c6d3923.tar.xz
rust-openssl-a145df011cc7ed7fbff37227192427a11c6d3923.zip
Update for libc split
Diffstat (limited to 'crypto/hmac.rs')
-rw-r--r--crypto/hmac.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hmac.rs b/crypto/hmac.rs
index 17993bfe..b66180fc 100644
--- a/crypto/hmac.rs
+++ b/crypto/hmac.rs
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-use std::libc::{c_uchar, c_int, c_uint};
+use libc::{c_uchar, c_int, c_uint};
use std::ptr;
use std::slice;
use crypto::hash;