[openssh-commits] [openssh] 01/03: upstream: remove unneeded semicolons; checked by millert@
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Sep 24 14:54:56 AEST 2024
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit a35f543d3a6275fef781e515c262d1c687c3bc28
Author: jsg at openbsd.org <jsg at openbsd.org>
AuthorDate: Fri Sep 20 02:00:46 2024 +0000
upstream: remove unneeded semicolons; checked by millert@
OpenBSD-Commit-ID: 3fb621a58e04b759a875ad6a33f35bb57ca80231
---
ssh-keyscan.c | 4 ++--
ssh-pkcs11.c | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index f34e0567..254e9178 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keyscan.c,v 1.161 2024/09/09 02:39:57 djm Exp $ */
+/* $OpenBSD: ssh-keyscan.c,v 1.162 2024/09/20 02:00:46 jsg Exp $ */
/*
* Copyright 1995, 1996 by David Mazieres <dm at lcs.mit.edu>.
*
@@ -650,7 +650,7 @@ do_host(char *host)
if (addr_cmp(&addr, &end_addr) == 0)
break;
addr_increment(&addr);
- };
+ }
}
}
diff --git a/ssh-pkcs11.c b/ssh-pkcs11.c
index fadf9c9c..31b9360f 100644
--- a/ssh-pkcs11.c
+++ b/ssh-pkcs11.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-pkcs11.c,v 1.63 2024/08/15 00:51:51 djm Exp $ */
+/* $OpenBSD: ssh-pkcs11.c,v 1.64 2024/09/20 02:00:46 jsg Exp $ */
/*
* Copyright (c) 2010 Markus Friedl. All rights reserved.
* Copyright (c) 2014 Pedro Martelletto. All rights reserved.
@@ -1192,7 +1192,7 @@ pkcs11_fetch_certs(struct pkcs11_provider *p, CK_ULONG slotidx,
}
note_key(p, slotidx, __func__, key);
if (pkcs11_key_included(keysp, nkeys, key)) {
- debug2_f("key already included");;
+ debug2_f("key already included");
sshkey_free(key);
} else {
/* expand key array and add key */
@@ -1306,7 +1306,7 @@ pkcs11_fetch_keys(struct pkcs11_provider *p, CK_ULONG slotidx,
}
note_key(p, slotidx, __func__, key);
if (pkcs11_key_included(keysp, nkeys, key)) {
- debug2_f("key already included");;
+ debug2_f("key already included");
sshkey_free(key);
} else {
/* expand key array and add key */
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list