X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=crypto%2Frsa%2Frsa_prn.c;h=b5f4bce2a3e6549c8d2348015198d00c069d957e;hp=5e6c599e46d511aaa88a42e38ba2a7679839683a;hb=8686c474807d3c7bcb722294f39ac4e5627e9fa2;hpb=b5fe5dfbdaf8ee25e45c9a94736a1478a355e136;ds=sidebyside diff --git a/crypto/rsa/rsa_prn.c b/crypto/rsa/rsa_prn.c index 5e6c599e46..b5f4bce2a3 100644 --- a/crypto/rsa/rsa_prn.c +++ b/crypto/rsa/rsa_prn.c @@ -1,5 +1,5 @@ /* - * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the OpenSSL license (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -20,12 +20,12 @@ int RSA_print_fp(FILE *fp, const RSA *x, int off) if ((b = BIO_new(BIO_s_file())) == NULL) { RSAerr(RSA_F_RSA_PRINT_FP, ERR_R_BUF_LIB); - return (0); + return 0; } BIO_set_fp(b, fp, BIO_NOCLOSE); ret = RSA_print(b, x, off); BIO_free(b); - return (ret); + return ret; } #endif