summaryrefslogtreecommitdiffstats
path: root/test/handshake_helper.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-03-02 13:41:10 +0000
committerMatt Caswell <matt@openssl.org>2017-03-02 16:49:28 +0000
commitb6611753a6d9bef6a8c16850a9eb9215d8a84fac (patch)
treee39b072f2d86c8db226f0c8d10133376a22d751f /test/handshake_helper.h
parent439db0c97bd50cae008e876c6c8ed5e5011bf6eb (diff)
Use the built in boolean type for CompressionExpected
Don't create a custom boolean type for parsing CompressionExpected. Use the existing one instead. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2814)
Diffstat (limited to 'test/handshake_helper.h')
-rw-r--r--test/handshake_helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/handshake_helper.h b/test/handshake_helper.h
index a9dd5c94a1..1f079c932b 100644
--- a/test/handshake_helper.h
+++ b/test/handshake_helper.h
@@ -34,7 +34,7 @@ typedef struct handshake_result {
ssl_servername_t servername;
/* Session ticket status */
ssl_session_ticket_t session_ticket;
- ssl_compression_t compression;
+ int compression;
/* Was this called on the second context? */
int session_ticket_do_not_call;
char *client_npn_negotiated;