]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: fix typo; spotted by Albert Chin
authordjm@openbsd.org <djm@openbsd.org>
Mon, 8 Jan 2024 00:30:39 +0000 (00:30 +0000)
committerDamien Miller <djm@mindrot.org>
Mon, 8 Jan 2024 02:26:42 +0000 (13:26 +1100)
OpenBSD-Commit-ID: 77140b520a43375b886e535eb8bd842a268f9368

ssh-add.c

index 1ec1a1f6884187531fe37e43eddd262dac7defd5..1ec6c89b03c0c05eed27ca302149a09691c312ff 100644 (file)
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-add.c,v 1.170 2023/12/19 06:57:34 jmc Exp $ */
+/* $OpenBSD: ssh-add.c,v 1.171 2024/01/08 00:30:39 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -817,7 +817,7 @@ main(int argc, char **argv)
        LogLevel log_level = SYSLOG_LEVEL_INFO;
        struct sshkey *k, **certs = NULL;
        struct dest_constraint **dest_constraints = NULL;
-       size_t ndest_constraints = 0i, ncerts = 0;
+       size_t ndest_constraints = 0, ncerts = 0;
 
        /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
        sanitise_stdfd();