summaryrefslogtreecommitdiffstats
path: root/ssl/statem/statem.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-05 10:18:06 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commit35bf6e05371de3aebd83dc630125a108ec4a5e70 (patch)
treec71f645eea7babdf30f1eecdf30a2e286ac02769 /ssl/statem/statem.h
parenta455d0f6fff7bdac2b991715e7bf5b000e2274af (diff)
Change HANDSHAKE_STATE to OSSL_HANDSHAKE_STATE
Rename the enum HANDSHAKE_STATE to OSSL_HANDSHAKE_STATE to ensure there are no namespace clashes, and convert it into a typedef. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/statem/statem.h')
-rw-r--r--ssl/statem/statem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/statem/statem.h b/ssl/statem/statem.h
index 873ed0e7bf..44c1dd45bc 100644
--- a/ssl/statem/statem.h
+++ b/ssl/statem/statem.h
@@ -132,7 +132,7 @@ struct statem_st {
enum WORK_STATE write_state_work;
enum READ_STATE read_state;
enum WORK_STATE read_state_work;
- enum HANDSHAKE_STATE hand_state;
+ OSSL_HANDSHAKE_STATE hand_state;
int in_init;
int read_state_first_init;
int use_timer;