diff options
| author | Steven Fackler <[email protected]> | 2014-04-06 21:15:15 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-04-06 21:15:15 -0700 |
| commit | a145df011cc7ed7fbff37227192427a11c6d3923 (patch) | |
| tree | a94c5e7724c8adff6a83d05584c4a3d3f0d93df4 /crypto/hmac.rs | |
| parent | Remove use of {:?} (diff) | |
| download | rust-openssl-a145df011cc7ed7fbff37227192427a11c6d3923.tar.xz rust-openssl-a145df011cc7ed7fbff37227192427a11c6d3923.zip | |
Update for libc split
Diffstat (limited to 'crypto/hmac.rs')
| -rw-r--r-- | crypto/hmac.rs | 2 |
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; |