Skip to content

Commit 01fb82e

Browse files
jonathangraydjmdjm
authored andcommitted
upstream: spelling; ok djm@
OpenBSD-Commit-ID: bdea29bb3ed2a5a7782999c4c663b219d2270483
1 parent b88b690 commit 01fb82e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

cipher.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: cipher.c,v 1.120 2023/10/10 06:49:54 tb Exp $ */
1+
/* $OpenBSD: cipher.c,v 1.121 2024/05/17 02:39:11 jsg Exp $ */
22
/*
33
* Author: Tatu Ylonen <[email protected]>
44
* Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland
@@ -372,7 +372,7 @@ cipher_crypt(struct sshcipher_ctx *cc, u_int seqnr, u_char *dest,
372372
if (!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_IV_GEN,
373373
1, lastiv))
374374
return SSH_ERR_LIBCRYPTO_ERROR;
375-
/* set tag on decyption */
375+
/* set tag on decryption */
376376
if (!cc->encrypt &&
377377
!EVP_CIPHER_CTX_ctrl(cc->evp, EVP_CTRL_GCM_SET_TAG,
378378
authlen, (u_char *)src + aadlen + len))

ed25519.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# $OpenBSD: ed25519.sh,v 1.1 2023/01/15 23:05:32 djm Exp $
2+
# $OpenBSD: ed25519.sh,v 1.2 2024/05/17 02:39:11 jsg Exp $
33
# Placed in the Public Domain.
44
#
55
AUTHOR="supercop-20221122/crypto_sign/ed25519/ref/implementors"
@@ -74,7 +74,7 @@ for i in $FILES; do
7474
sed -e "s/crypto_sign_open/crypto_sign_ed25519_open/g"
7575
;;
7676
*/crypto_sign/ed25519/ref/fe25519.*)
77-
# avoid a couple of name collions with other files
77+
# avoid a couple of name collisions with other files
7878
sed -e "s/reduce_add_sub/fe25519_reduce_add_sub/g" \
7979
-e "s/ equal[(]/ fe25519_equal(/g" \
8080
-e "s/^int /static int /g"

readconf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: readconf.c,v 1.386 2024/03/04 04:13:18 djm Exp $ */
1+
/* $OpenBSD: readconf.c,v 1.387 2024/05/17 02:39:11 jsg Exp $ */
22
/*
33
* Author: Tatu Ylonen <[email protected]>
44
* Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland
@@ -3337,7 +3337,7 @@ parse_ssh_uri(const char *uri, char **userp, char **hostp, int *portp)
33373337
return r;
33383338
}
33393339

3340-
/* XXX the following is a near-vebatim copy from servconf.c; refactor */
3340+
/* XXX the following is a near-verbatim copy from servconf.c; refactor */
33413341
static const char *
33423342
fmt_multistate_int(int val, const struct multistate *m)
33433343
{

sftp-client.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: sftp-client.c,v 1.175 2023/11/13 09:18:19 tobhe Exp $ */
1+
/* $OpenBSD: sftp-client.c,v 1.176 2024/05/17 02:39:11 jsg Exp $ */
22
/*
33
* Copyright (c) 2001-2004 Damien Miller <[email protected]>
44
*
@@ -2440,7 +2440,7 @@ handle_dest_replies(struct sftp_conn *to, const char *to_path, int synchronous,
24402440
* server not to have reordered replies that could have
24412441
* inserted holes where none existed in the source file.
24422442
*
2443-
* XXX we could get a more accutate progress bar if we updated
2443+
* XXX we could get a more accurate progress bar if we updated
24442444
* the counter based on the reply from the destination...
24452445
*/
24462446
(*nreqsp)--;

sshd-session.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: sshd-session.c,v 1.1 2024/05/17 00:30:24 djm Exp $ */
1+
/* $OpenBSD: sshd-session.c,v 1.2 2024/05/17 02:39:11 jsg Exp $ */
22
/*
33
* SSH2 implementation:
44
* Privilege Separation:
@@ -1132,7 +1132,7 @@ main(int ac, char **av)
11321132
}
11331133
}
11341134
if (!have_key)
1135-
fatal("internal error: monitor recieved no hostkeys");
1135+
fatal("internal error: monitor received no hostkeys");
11361136

11371137
/* Ensure that umask disallows at least group and world write */
11381138
new_umask = umask(0077) | 0022;

0 commit comments

Comments
 (0)