diff options
Diffstat (limited to 'src/lib/libcrypto/bio/bss_conn.c')
-rw-r--r-- | src/lib/libcrypto/bio/bss_conn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bio/bss_conn.c b/src/lib/libcrypto/bio/bss_conn.c index f5d0e759e2..216780ed5e 100644 --- a/src/lib/libcrypto/bio/bss_conn.c +++ b/src/lib/libcrypto/bio/bss_conn.c | |||
@@ -469,7 +469,7 @@ static long conn_ctrl(BIO *b, int cmd, long num, void *ptr) | |||
469 | break; | 469 | break; |
470 | case BIO_C_DO_STATE_MACHINE: | 470 | case BIO_C_DO_STATE_MACHINE: |
471 | /* use this one to start the connection */ | 471 | /* use this one to start the connection */ |
472 | if (!data->state != BIO_CONN_S_OK) | 472 | if (data->state != BIO_CONN_S_OK) |
473 | ret=(long)conn_state(b,data); | 473 | ret=(long)conn_state(b,data); |
474 | else | 474 | else |
475 | ret=1; | 475 | ret=1; |