projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
879b198
)
add missing parentheses
author
Nils Larsch
<nils@openssl.org>
Wed, 27 Apr 2005 07:57:50 +0000
(07:57 +0000)
committer
Nils Larsch
<nils@openssl.org>
Wed, 27 Apr 2005 07:57:50 +0000
(07:57 +0000)
crypto/bio/bss_conn.c
patch
|
blob
|
history
diff --git
a/crypto/bio/bss_conn.c
b/crypto/bio/bss_conn.c
index fd20bbcd0f445cd8fd4d352d717bae25c59a8c11..0c41b1b5a95b0c1f902ebc8542c82a21611b7a61 100644
(file)
--- a/
crypto/bio/bss_conn.c
+++ b/
crypto/bio/bss_conn.c
@@
-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;