[openssh-commits] [openssh] 01/03: upstream: Many downstreams expect ssh to compile as non-C99...

git+noreply at mindrot.org git+noreply at mindrot.org
Sat Nov 6 21:56:52 AEDT 2021


This is an automated email from the git hooks/post-receive script.

dtucker pushed a commit to branch master
in repository openssh.

commit 59c60f96fee321c7f38f00372826d37f289534af
Author: deraadt at openbsd.org <deraadt at openbsd.org>
Date:   Wed Nov 3 22:00:56 2021 +0000

    upstream: Many downstreams expect ssh to compile as non-C99...
    
    OpenBSD-Commit-ID: e6aa3e08bda68e5fb838fc8a49b1d2dfc38ee783
---
 sk-usbhid.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sk-usbhid.c b/sk-usbhid.c
index 6d69d321..bfa1d1ed 100644
--- a/sk-usbhid.c
+++ b/sk-usbhid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sk-usbhid.c,v 1.33 2021/11/02 22:56:40 djm Exp $ */
+/* $OpenBSD: sk-usbhid.c,v 1.34 2021/11/03 22:00:56 deraadt Exp $ */
 /*
  * Copyright (c) 2019 Markus Friedl
  * Copyright (c) 2020 Pedro Martelletto
@@ -510,7 +510,7 @@ check_sk_options(fido_dev_t *dev, const char *opt, int *ret)
 	fido_cbor_info_t *info;
 	char * const *name;
 	const bool *value;
-	size_t len;
+	size_t len, i;
 	int r;
 
 	*ret = -1;
@@ -531,7 +531,7 @@ check_sk_options(fido_dev_t *dev, const char *opt, int *ret)
 	name = fido_cbor_info_options_name_ptr(info);
 	value = fido_cbor_info_options_value_ptr(info);
 	len = fido_cbor_info_options_len(info);
-	for (size_t i = 0; i < len; i++) {
+	for (i = 0; i < len; i++) {
 		if (!strcmp(name[i], opt)) {
 			*ret = value[i];
 			break;

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list