From: Bodo Möller Date: Thu, 24 Feb 2000 20:13:27 +0000 (+0000) Subject: Do fflush(stdout) when there was an error. X-Git-Tag: OpenSSL_0_9_5beta2~84 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0dd0cbf554f0211e49daed346a6a77587c681c22;p=oweals%2Fopenssl.git Do fflush(stdout) when there was an error. --- diff --git a/crypto/bn/bntest.c b/crypto/bn/bntest.c index 503c4f3901..fe544ad155 100644 --- a/crypto/bn/bntest.c +++ b/crypto/bn/bntest.c @@ -235,6 +235,7 @@ int main(int argc, char *argv[]) exit(0); err: BIO_puts(out,"1\n"); /* make sure bc fails if we are piping to it */ + fflush(stdout); ERR_load_crypto_strings(); ERR_print_errors_fp(stderr); exit(1);