diff options
author | Ingela Anderton Andin <[email protected]> | 2011-11-15 12:08:48 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-11-15 12:09:37 +0100 |
commit | d82a38a057a34469d5820f493edd843f95a82ba0 (patch) | |
tree | 4bd705c28155804427716d3a6e751a063220b969 | |
parent | ccc6bbb5004f0d23b988b51c79995a618b80b494 (diff) | |
download | otp-d82a38a057a34469d5820f493edd843f95a82ba0.tar.gz otp-d82a38a057a34469d5820f493edd843f95a82ba0.tar.bz2 otp-d82a38a057a34469d5820f493edd843f95a82ba0.zip |
Removed compiler warnings
-rw-r--r-- | lib/ssl/test/ssl_cipher_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_cipher_SUITE.erl b/lib/ssl/test/ssl_cipher_SUITE.erl index 87478e13bc..99bc21e820 100644 --- a/lib/ssl/test/ssl_cipher_SUITE.erl +++ b/lib/ssl/test/ssl_cipher_SUITE.erl @@ -134,7 +134,7 @@ aes_decipher_good(Config) when is_list(Config) -> Version = {3,3}, Content = <<183,139,16,132,10,209,67,86,168,100,61,217,145,57,36,56,72,69,76,76,79,10>>, Mac = <<71,136,212,107,223,200,70,232,127,116,148,205,232,35,158,113,237,174,15,217,192,168,35,8,6,107,107,233,25,174,90,111>>, - {Content, Mac, CipherState1} = ssl_cipher:decipher(?AES, HashSz, CipherState, Fragment, Version), + {Content, Mac, _} = ssl_cipher:decipher(?AES, HashSz, CipherState, Fragment, Version), ok. %%-------------------------------------------------------------------- @@ -155,7 +155,7 @@ aes_decipher_fail(Config) when is_list(Config) -> 198,181,81,19,98,162,213,228,74,224,253,168,156,59,195,122, 108,101,107,242,20,15,169,150,163,107,101,94,93,104,241,165>>, Version = {3,3}, - {Content, Mac, CipherState1} = ssl_cipher:decipher(?AES, HashSz, CipherState, Fragment, Version), + {Content, Mac, _} = ssl_cipher:decipher(?AES, HashSz, CipherState, Fragment, Version), 32 = byte_size(Content), 32 = byte_size(Mac), ok. |