From: tb@openbsd.org Date: Fri, 7 Nov 2025 06:29:45 +0000 (+0000) Subject: upstream: sshkey_ec_validate_public: zap trailing blank I missed on X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c09eeba78ad622b988ab7f8d96e75b7edd434598;p=thirdparty%2Fopenssh-portable.git upstream: sshkey_ec_validate_public: zap trailing blank I missed on review OpenBSD-Commit-ID: b296bd6056f33fd567ca0d5e9123dac1ec00f037 --- diff --git a/sshkey.c b/sshkey.c index 6e47362fc..e9a287480 100644 --- a/sshkey.c +++ b/sshkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshkey.c,v 1.156 2025/11/07 04:11:59 djm Exp $ */ +/* $OpenBSD: sshkey.c,v 1.157 2025/11/07 06:29:45 tb Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. * Copyright (c) 2008 Alexander von Gernler. All rights reserved. @@ -2696,7 +2696,7 @@ sshkey_ec_validate_public(const EC_GROUP *group, const EC_POINT *public) /* * Verify nQ == infinity (n == order of subgroup) * This check may be skipped for curves with cofactor 1, as per - * NIST SP 800-56A, 5.6.2.3. + * NIST SP 800-56A, 5.6.2.3. */ if (!BN_is_one(cofactor)) { if ((order = BN_new()) == NULL) {