summaryrefslogtreecommitdiffstats
path: root/ssl/statem/statem.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-11-06 10:25:08 +0000
committerMatt Caswell <matt@openssl.org>2015-11-06 15:40:31 +0000
commitd99b0691d3a5d215e8d4dbe1b7224e066153fe2c (patch)
tree352ebd6c98668b3bb6283786ab71b2228f1d71b2 /ssl/statem/statem.c
parent8d16c58fa4d4ef1d6394c2a6ad5ca93c095808e6 (diff)
Fix compilation problems with SCTP
The SCTP code is not compiled by default. This fixes some compilation problems in that code. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ssl/statem/statem.c')
-rw-r--r--ssl/statem/statem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/statem/statem.c b/ssl/statem/statem.c
index 3a44846e5c..bc3fc54fab 100644
--- a/ssl/statem/statem.c
+++ b/ssl/statem/statem.c
@@ -884,7 +884,7 @@ void ossl_statem_set_sctp_read_sock(SSL *s, int read_sock)
* 1: Yes (we are in the read sock state)
* 0: No (we are not in the read sock state)
*/
-int statem_in_sctp_read_sock(SSL *s)
+int ossl_statem_in_sctp_read_sock(SSL *s)
{
return s->statem.in_sctp_read_sock;
}