Commit df9e0bf5 authored by Nils Larsch's avatar Nils Larsch
Browse files

add missing parentheses

parent 879b1980
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;