summaryrefslogtreecommitdiffstats
path: root/test/ssl_test_ctx.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-01-25 21:25:53 +0100
committerRichard Levitte <levitte@openssl.org>2017-01-25 21:46:52 +0100
commit4bb0b4381edd96bc357e43d8f9a1c55fb405f121 (patch)
tree7c5d98797b55765c51f824e7754dbebbee9c73a8 /test/ssl_test_ctx.c
parentb1531d8e6cc95837e38b10d875ae64144c6fdf7a (diff)
Fix small typo
In test/ssl_test, parsing ExpectedClientSignHash ended up in the expected_server_sign_hash field. Reviewed-by: Stephen Henson <steve@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2289)
Diffstat (limited to 'test/ssl_test_ctx.c')
-rw-r--r--test/ssl_test_ctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ssl_test_ctx.c b/test/ssl_test_ctx.c
index 242602d88e..3a937b3880 100644
--- a/test/ssl_test_ctx.c
+++ b/test/ssl_test_ctx.c
@@ -509,7 +509,7 @@ __owur static int parse_expected_server_sign_hash(SSL_TEST_CTX *test_ctx,
__owur static int parse_expected_client_sign_hash(SSL_TEST_CTX *test_ctx,
const char *value)
{
- return parse_expected_sign_hash(&test_ctx->expected_server_sign_hash,
+ return parse_expected_sign_hash(&test_ctx->expected_client_sign_hash,
value);
}