summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-02-16 17:04:40 +0000
committerMatt Caswell <matt@openssl.org>2017-02-17 10:28:01 +0000
commit4fbfe86ae3c5a829ea1a259330921bd5549223a5 (patch)
tree69226d11aa9b0c0f4043033eb45a6a51afc2d4fb /test
parent9b92f161708e31de87cf8df0d58e3f99bd7d1724 (diff)
Don't use an enum in the return type for a public API function
We use an int instead. That means SSL_key_update() also should use an int. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2609)
Diffstat (limited to 'test')
-rw-r--r--test/ssl_test_ctx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ssl_test_ctx.h b/test/ssl_test_ctx.h
index eaeee1fd3c..1c66740fb7 100644
--- a/test/ssl_test_ctx.h
+++ b/test/ssl_test_ctx.h
@@ -124,7 +124,7 @@ typedef struct {
/* Maximum send fragment size. */
int max_fragment_size;
/* KeyUpdate type */
- SSL_KEY_UPDATE key_update_type;
+ int key_update_type;
/*
* Extra server/client configurations. Per-handshake.