From: tb Date: Tue, 9 Jul 2024 17:46:32 +0000 (+0000) Subject: Unwrap a couple of lines X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=12c81434beadd8713763a8c4650b3def6f312d25;p=openbsd Unwrap a couple of lines --- diff --git a/lib/libcrypto/kdf/tls1_prf.c b/lib/libcrypto/kdf/tls1_prf.c index afc629b708f..65eb480b8ec 100644 --- a/lib/libcrypto/kdf/tls1_prf.c +++ b/lib/libcrypto/kdf/tls1_prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls1_prf.c,v 1.35 2024/07/09 17:44:18 tb Exp $ */ +/* $OpenBSD: tls1_prf.c,v 1.36 2024/07/09 17:46:32 tb Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project * 2016. @@ -259,10 +259,8 @@ tls1_prf_P_hash(const EVP_MD *md, } static int -tls1_prf_alg(const EVP_MD *md, - const unsigned char *secret, size_t secret_len, - const unsigned char *seed, size_t seed_len, - unsigned char *out, size_t out_len) +tls1_prf_alg(const EVP_MD *md, const unsigned char *secret, size_t secret_len, + const unsigned char *seed, size_t seed_len, unsigned char *out, size_t out_len) { unsigned char *tmp; size_t half_len;