summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2015-10-02 15:16:08 +0200
committerRichard Levitte <levitte@openssl.org>2015-10-23 19:52:08 +0200
commit4428c7dba8f6f407d915c1226f4e0f673e8be241 (patch)
treee0226d6f295f0405f327652d2d0aea6d2fe497eb /apps
parentdad0b512e649336440e2b3cc9d667c56d9a91eff (diff)
Do not treat 0 return value from BIO_get_fd() as error
0 is a valid file descriptor. RT#4068 Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/ocsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ocsp.c b/apps/ocsp.c
index 2ef42789e6..c599ffbd4f 100644
--- a/apps/ocsp.c
+++ b/apps/ocsp.c
@@ -1202,7 +1202,7 @@ static OCSP_RESPONSE *query_responder(BIO *cbio, const char *host,
return NULL;
}
- if (BIO_get_fd(cbio, &fd) <= 0) {
+ if (BIO_get_fd(cbio, &fd) < 0) {
BIO_puts(bio_err, "Can't get connection fd\n");
goto err;
}