From: Nils Larsch Date: Wed, 27 Apr 2005 07:57:50 +0000 (+0000) Subject: add missing parentheses X-Git-Tag: OpenSSL_0_9_8-beta1~13^2~101 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=df9e0bf507de54fcd17f42bd7e602454b9f99bf2 add missing parentheses --- diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c index fd20bbcd0f..0c41b1b5a9 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;