add missing parentheses
This commit is contained in:
parent
1e764f463e
commit
4b21c202ff
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue