Fix some style issues identified during review
[openssl.git] / ssl / t1_lib.c
index bb4f292cc392049401fa26af731d2f68a642cd74..3e592beb6c389ae68d0f1a5c06fc8a5c5bff5de5 100644 (file)
@@ -943,7 +943,7 @@ int ssl_cipher_disabled(SSL *s, const SSL_CIPHER *c, int op)
 
 static int tls_use_ticket(SSL *s)
 {
-    if (s->options & SSL_OP_NO_TICKET || SSL_IS_TLS13(s))
+    if ((s->options & SSL_OP_NO_TICKET) || SSL_IS_TLS13(s))
         return 0;
     return ssl_security(s, SSL_SECOP_TICKET, 0, 0, NULL);
 }