X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;ds=sidebyside;f=crypto%2Fdh%2Fdh_prn.c;h=d0e1ab3d06cb191454430e0ff43d7002d999acce;hb=e38873f5ce93b41929d8128a533cca7d9e3f0f5a;hp=283fb0f4a31a47a806f83d36d4dd69fdf4bb83c0;hpb=aa6bb1352b1026b20a23b49da4efdcf171926eb0;p=openssl.git diff --git a/crypto/dh/dh_prn.c b/crypto/dh/dh_prn.c index 283fb0f4a3..d0e1ab3d06 100644 --- a/crypto/dh/dh_prn.c +++ b/crypto/dh/dh_prn.c @@ -1,7 +1,7 @@ /* * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html @@ -20,11 +20,11 @@ int DHparams_print_fp(FILE *fp, const DH *x) if ((b = BIO_new(BIO_s_file())) == NULL) { DHerr(DH_F_DHPARAMS_PRINT_FP, ERR_R_BUF_LIB); - return (0); + return 0; } BIO_set_fp(b, fp, BIO_NOCLOSE); ret = DHparams_print(b, x); BIO_free(b); - return (ret); + return ret; } #endif