fix if statement: call conn_state() if the BIO is not in the BIO_CONN_S_OK state

This commit is contained in:
Nils Larsch 2006-02-02 22:11:02 +00:00
parent c7474d077b
commit d5fd72fd0d

View 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;