summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordtucker <dtucker>2011-11-03 23:53:31 +0000
committerdtucker <dtucker>2011-11-03 23:53:31 +0000
commit37d36345a9d966db93914661b58c929113281b4a (patch)
tree12771d0dba2c7068ae1917ee0ebbc9d67c3021b5
parent15ce25f61d6a4bb9e042703ce2f3ae6e32cbd71b (diff)
downloadopenssh-37d36345a9d966db93914661b58c929113281b4a.tar.gz
- djm@cvs.openbsd.org 2011/10/19 10:39:48
[umac.c] typo in comment; patch from Michael W. Bombardieri
-rw-r--r--ChangeLog3
-rw-r--r--umac.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a590cf9d..379dff4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
- djm@cvs.openbsd.org 2011/10/19 00:06:10
[moduli.c]
s/tmpfile/tmp/ to make this -Wshadow clean
+ - djm@cvs.openbsd.org 2011/10/19 10:39:48
+ [umac.c]
+ typo in comment; patch from Michael W. Bombardieri
20111025
- (dtucker) [contrib/cygwin/Makefile] Continue if installing a doc file
diff --git a/umac.c b/umac.c
index 92902bc0..e78d2cc5 100644
--- a/umac.c
+++ b/umac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: umac.c,v 1.3 2008/05/12 20:52:20 pvalchev Exp $ */
+/* $OpenBSD: umac.c,v 1.4 2011/10/19 10:39:48 djm Exp $ */
/* -----------------------------------------------------------------------
*
* umac.c -- C Implementation UMAC Message Authentication
@@ -316,7 +316,7 @@ static void pdf_gen_xor(pdf_ctx *pc, UINT8 nonce[8], UINT8 buf[8])
typedef struct {
UINT8 nh_key [L1_KEY_LEN + L1_KEY_SHIFT * (STREAMS - 1)]; /* NH Key */
- UINT8 data [HASH_BUF_BYTES]; /* Incomming data buffer */
+ UINT8 data [HASH_BUF_BYTES]; /* Incoming data buffer */
int next_data_empty; /* Bookeeping variable for data buffer. */
int bytes_hashed; /* Bytes (out of L1_KEY_LEN) incorperated. */
UINT64 state[STREAMS]; /* on-line state */