add missing parentheses
authorNils Larsch <nils@openssl.org>
Wed, 27 Apr 2005 07:59:17 +0000 (07:59 +0000)
committerNils Larsch <nils@openssl.org>
Wed, 27 Apr 2005 07:59:17 +0000 (07:59 +0000)
crypto/bio/bss_conn.c

index f5d0e759e230eb177ef0a5e1b88d27da1f70e241..f4896eecabdd4158d5c2d5561210e6761319eb44 100644 (file)
@@ -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;