add missing parentheses

This commit is contained in:
Nils Larsch 2005-04-27 07:57:50 +00:00
parent 879b19801a
commit df9e0bf507

View File

@ -469,7 +469,7 @@ static long conn_ctrl(BIO *b, int cmd, long num, void *ptr)
break; break;
case BIO_C_DO_STATE_MACHINE: case BIO_C_DO_STATE_MACHINE:
/* use this one to start the connection */ /* 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); ret=(long)conn_state(b,data);
else else
ret=1; ret=1;