summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg@openbsd.org <jsg@openbsd.org>2024-09-20 04:00:46 +0200
committerDamien Miller <djm@mindrot.org>2024-09-24 04:09:35 +0200
commita35f543d3a6275fef781e515c262d1c687c3bc28 (patch)
tree4b01829ba59aeabe766f303be92f6680e8564659
parentAdd 9.9 branch to CI status console. (diff)
downloadopenssh-a35f543d3a6275fef781e515c262d1c687c3bc28.tar.xz
openssh-a35f543d3a6275fef781e515c262d1c687c3bc28.zip
upstream: remove unneeded semicolons; checked by millert@
OpenBSD-Commit-ID: 3fb621a58e04b759a875ad6a33f35bb57ca80231
-rw-r--r--ssh-keyscan.c4
-rw-r--r--ssh-pkcs11.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index f34e05678..254e91783 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@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 fadf9c9c6..31b9360f0 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 */