summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-09-10 09:23:34 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:38:18 +0000
commit0131df49ee1f98918e958c05b0d4f56b7d441f83 (patch)
tree7a80bb2329925c522a6d4509e1161cfe4fb7e7c5 /ssl
parent23a635c0ec895f9876d4d7633e7e2923b5bbfc17 (diff)
Remove the SSL state variable
The SSL structure contained a "state" variable that kept track of the state machine in the old code. The new state machine does not use this so it can be removed. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_locl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h
index e7d28622c0..4c51b0e92c 100644
--- a/ssl/ssl_locl.h
+++ b/ssl/ssl_locl.h
@@ -1093,7 +1093,6 @@ struct ssl_st {
/* we have shut things down, 0x01 sent, 0x02 for received */
int shutdown;
/* where we are */
- int state;
STATEM statem;
BUF_MEM *init_buf; /* buffer used during init */