From cb389fe80462e20daba30835a9e86354451bd14f Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 29 Jan 2016 09:38:06 +0000 Subject: Correct value of DH_CHECK_PUBKEY_INVALID A new return value for DH_check_pub_key was recently added: DH_CHECK_PUBKEY_INVALID. As this is a flag which can be ORed with other return values it should have been set to the value 4 not 3. RT#4278 Reviewed-by: Andy Polyakov --- include/openssl/dh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/openssl/dh.h b/include/openssl/dh.h index 90cfb82d85..74bc9891a8 100644 --- a/include/openssl/dh.h +++ b/include/openssl/dh.h @@ -174,7 +174,7 @@ struct dh_st { /* DH_check_pub_key error codes */ # define DH_CHECK_PUBKEY_TOO_SMALL 0x01 # define DH_CHECK_PUBKEY_TOO_LARGE 0x02 -# define DH_CHECK_PUBKEY_INVALID 0x03 +# define DH_CHECK_PUBKEY_INVALID 0x04 /* * primes p where (p-1)/2 is prime too are called "safe"; we define this for -- cgit v1.2.3