summaryrefslogtreecommitdiffstats
path: root/ssl/d1_msg.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-05 10:39:54 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commitfe3a329117dbb04a17ca2cb9fc9e3493dc7f03ab (patch)
tree20150679f5f4e133a853b4d2c4b0e56fcdc18d66 /ssl/d1_msg.c
parent7c8b53571698f32219a912e05bc71df4017094c1 (diff)
Change statem prefix to ossl_statem
Change various state machine functions to use the prefix ossl_statem instead. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/d1_msg.c')
-rw-r--r--ssl/d1_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_msg.c b/ssl/d1_msg.c
index e35c9356a4..40152c28d2 100644
--- a/ssl/d1_msg.c
+++ b/ssl/d1_msg.c
@@ -127,7 +127,7 @@ int dtls1_write_app_data_bytes(SSL *s, int type, const void *buf_, int len)
*/
if ((SSL_in_init(s) && !s->in_handshake) ||
(BIO_dgram_is_sctp(SSL_get_wbio(s)) &&
- statem_in_sctp_read_sock(s)))
+ ossl_statem_in_sctp_read_sock(s)))
#else
if (SSL_in_init(s) && !s->in_handshake)
#endif