upstream: remove unneeded semicolons; checked by millert@

OpenBSD-Commit-ID: 3fb621a58e04b759a875ad6a33f35bb57ca80231
This commit is contained in:
jsg@openbsd.org 2024-09-20 02:00:46 +00:00 committed by Damien Miller
parent 1641f2d4d6
commit a35f543d3a
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View File

@ -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>. * 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) if (addr_cmp(&addr, &end_addr) == 0)
break; break;
addr_increment(&addr); addr_increment(&addr);
}; }
} }
} }

View File

@ -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) 2010 Markus Friedl. All rights reserved.
* Copyright (c) 2014 Pedro Martelletto. 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); note_key(p, slotidx, __func__, key);
if (pkcs11_key_included(keysp, nkeys, key)) { if (pkcs11_key_included(keysp, nkeys, key)) {
debug2_f("key already included");; debug2_f("key already included");
sshkey_free(key); sshkey_free(key);
} else { } else {
/* expand key array and add key */ /* 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); note_key(p, slotidx, __func__, key);
if (pkcs11_key_included(keysp, nkeys, key)) { if (pkcs11_key_included(keysp, nkeys, key)) {
debug2_f("key already included");; debug2_f("key already included");
sshkey_free(key); sshkey_free(key);
} else { } else {
/* expand key array and add key */ /* expand key array and add key */