From: Andy Polyakov Date: Fri, 28 May 2004 21:42:40 +0000 (+0000) Subject: Make sure we return 0 if test passed. X-Git-Tag: BEN_FIPS_TEST_6~14^2~226 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=674ee8b72defc140447c2c65e3e3e65188da1919;p=oweals%2Fopenssl.git Make sure we return 0 if test passed. --- diff --git a/crypto/sha/sha256t.c b/crypto/sha/sha256t.c index 68d95f1ab5..f57cfc54f5 100644 --- a/crypto/sha/sha256t.c +++ b/crypto/sha/sha256t.c @@ -125,4 +125,6 @@ int main () fprintf(stdout,"."); fflush(stdout); fprintf(stdout," passed.\n"); fflush(stdout); + + return 0; } diff --git a/crypto/sha/sha512t.c b/crypto/sha/sha512t.c index 603fcefcbe..283b59c5ce 100644 --- a/crypto/sha/sha512t.c +++ b/crypto/sha/sha512t.c @@ -163,4 +163,6 @@ int main () fprintf(stdout,"."); fflush(stdout); fprintf(stdout," passed.\n"); fflush(stdout); + + return 0; }