diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-11-21 22:17:16 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-11-21 22:17:16 +0000 |
commit | 145a77d85085fe1cf2c10c3d77fd045c09290eea (patch) | |
tree | 5a764defd7019391f8f3266b6c69031eb9b7f6ad /lib | |
parent | 61158541fec0fb3de481faec7afbe739ca731e41 (diff) |
ec_print.c: Unwrap a line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/ec/ec_print.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libcrypto/ec/ec_print.c b/lib/libcrypto/ec/ec_print.c index 312770f66c9..fcd1570492c 100644 --- a/lib/libcrypto/ec/ec_print.c +++ b/lib/libcrypto/ec/ec_print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_print.c,v 1.13 2023/07/07 13:54:45 beck Exp $ */ +/* $OpenBSD: ec_print.c,v 1.14 2023/11/21 22:17:15 tb Exp $ */ /* ==================================================================== * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. * @@ -63,8 +63,7 @@ EC_POINT_point2bn(const EC_GROUP *group, const EC_POINT *point, size_t buf_len = 0; unsigned char *buf; - buf_len = EC_POINT_point2oct(group, point, form, - NULL, 0, ctx); + buf_len = EC_POINT_point2oct(group, point, form, NULL, 0, ctx); if (buf_len == 0) return NULL; |