]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream: spelling
authorjsg@openbsd.org <jsg@openbsd.org>
Sat, 1 Jan 2022 05:55:06 +0000 (05:55 +0000)
committerDamien Miller <djm@mindrot.org>
Tue, 4 Jan 2022 07:22:46 +0000 (18:22 +1100)
OpenBSD-Commit-ID: c63e43087a64d0727af13409c708938e05147b62

ssh.c
sshbuf.h
umac.c

diff --git a/ssh.c b/ssh.c
index 2aef914ad9579deee22dd5fd0ead055a927cfa6e..99e427102d1b5e2433b1e2d67fb9d454e87db180 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.570 2021/12/02 02:44:44 djm Exp $ */
+/* $OpenBSD: ssh.c,v 1.571 2022/01/01 05:55:06 jsg Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1272,7 +1272,7 @@ main(int ac, char **av)
                    /* Optional additional jump hosts ",..." */
                    options.jump_extra == NULL ? "" : " -J ",
                    options.jump_extra == NULL ? "" : options.jump_extra,
-                   /* Optional "-F" argumment if -F specified */
+                   /* Optional "-F" argument if -F specified */
                    config == NULL ? "" : " -F ",
                    config == NULL ? "" : config,
                    /* Optional "-v" arguments if -v set */
index 2ad0e61be120d9d657b9b124618ad4a21b0ae78f..75dac9b467c65fd5046229053df532d825cfc563 100644 (file)
--- a/sshbuf.h
+++ b/sshbuf.h
@@ -1,4 +1,4 @@
-/*     $OpenBSD: sshbuf.h,v 1.23 2020/06/22 05:54:10 djm Exp $ */
+/*     $OpenBSD: sshbuf.h,v 1.24 2022/01/01 05:55:06 jsg Exp $ */
 /*
  * Copyright (c) 2011 Damien Miller
  *
@@ -380,7 +380,7 @@ u_int       sshbuf_refcount(const struct sshbuf *buf);
 
 # define SSHBUF_SIZE_INIT      256             /* Initial allocation */
 # define SSHBUF_SIZE_INC       256             /* Preferred increment length */
-# define SSHBUF_PACK_MIN       8192            /* Minimim packable offset */
+# define SSHBUF_PACK_MIN       8192            /* Minimum packable offset */
 
 /* # define SSHBUF_ABORT abort */
 /* # define SSHBUF_DEBUG */
diff --git a/umac.c b/umac.c
index e5ec19f082cb3f0d05aceb7bc1a03b79c33259e5..a710424ce0fd8fc8ef357c9778c98a7fe9f1c713 100644 (file)
--- a/umac.c
+++ b/umac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umac.c,v 1.21 2021/04/03 06:58:30 djm Exp $ */
+/* $OpenBSD: umac.c,v 1.22 2022/01/01 05:55:06 jsg Exp $ */
 /* -----------------------------------------------------------------------
  *
  * umac.c -- C Implementation UMAC Message Authentication
@@ -1177,7 +1177,7 @@ static int uhash(uhash_ctx_t ahc, u_char *msg, long len, u_char *res)
 /* The UMAC interface has two interfaces, an all-at-once interface where
  * the entire message to be authenticated is passed to UMAC in one buffer,
  * and a sequential interface where the message is presented a little at a
- * time. The all-at-once is more optimaized than the sequential version and
+ * time. The all-at-once is more optimized than the sequential version and
  * should be preferred when the sequential interface is not required.
  */
 struct umac_ctx {