diff options
| author | Alex Crichton <[email protected]> | 2015-04-02 18:14:51 -0700 |
|---|---|---|
| committer | Alex Crichton <[email protected]> | 2015-04-02 18:14:51 -0700 |
| commit | 293f1ce5b19610255f4fe3a69cf8fd159a0d5820 (patch) | |
| tree | 334537900cf3d6d55e3b980e69375a407ff0868c /openssl/src/crypto/hmac.rs | |
| parent | Remove two features (diff) | |
| download | rust-openssl-293f1ce5b19610255f4fe3a69cf8fd159a0d5820.tar.xz rust-openssl-293f1ce5b19610255f4fe3a69cf8fd159a0d5820.zip | |
Fixup for beta
Add derive(Clone) and don't negate unsigned numbers
Diffstat (limited to 'openssl/src/crypto/hmac.rs')
| -rw-r--r-- | openssl/src/crypto/hmac.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/crypto/hmac.rs b/openssl/src/crypto/hmac.rs index dace68aa..a59cb929 100644 --- a/openssl/src/crypto/hmac.rs +++ b/openssl/src/crypto/hmac.rs @@ -22,7 +22,7 @@ use std::io::prelude::*; use crypto::hash::Type; use ffi; -#[derive(PartialEq, Copy)] +#[derive(PartialEq, Copy, Clone)] enum State { Reset, Updated, |