From: Nils Larsch Date: Wed, 27 Apr 2005 07:59:17 +0000 (+0000) Subject: add missing parentheses X-Git-Tag: BEN_FIPS_TEST_8~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4b21c202ffefeb3ef5ef470593553b69fe33f5e7;p=openssl add missing parentheses --- diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index f5d0e759e2..f4896eecab 100644 --- a/crypto/bio/bss_conn.c +++ b/crypto/bio/bss_conn.c @@ -469,7 +469,7 @@ static long conn_ctrl(BIO *b, int cmd, long num, void *ptr) break; case BIO_C_DO_STATE_MACHINE: /* use this one to start the connection */ - if (!data->state != BIO_CONN_S_OK) + if (!(data->state != BIO_CONN_S_OK)) ret=(long)conn_state(b,data); else ret=1;