From: Dr. Stephen Henson Date: Sat, 15 Dec 2012 02:56:02 +0000 (+0000) Subject: Return success when the responder is active. X-Git-Tag: master-pre-reformat~1462 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99fc818e93c28b02e5c0f681fcc5af7489893f9f;p=openssl Return success when the responder is active. Don't verify our own responses. --- diff --git a/apps/ocsp.c b/apps/ocsp.c index 9a1bc97710..65e20e36d4 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -866,6 +866,12 @@ int MAIN(int argc, char **argv) resp = NULL; goto redo_accept; } + ret = 0; + goto end; + } + else if (ridx_filename) + { + ret = 0; goto end; }