diff options
Diffstat (limited to 'net/tls/tls_main.c')
| -rw-r--r-- | net/tls/tls_main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c index 156efce50dbd..0e989005bdc2 100644 --- a/net/tls/tls_main.c +++ b/net/tls/tls_main.c @@ -56,9 +56,9 @@ enum {  	TLS_NUM_PROTS,  }; -static struct proto *saved_tcpv6_prot; +static const struct proto *saved_tcpv6_prot;  static DEFINE_MUTEX(tcpv6_prot_mutex); -static struct proto *saved_tcpv4_prot; +static const struct proto *saved_tcpv4_prot;  static DEFINE_MUTEX(tcpv4_prot_mutex);  static struct proto tls_prots[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG];  static struct proto_ops tls_sw_proto_ops; |