diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2011-10-19 10:39:49 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2011-10-19 10:39:49 +0000 |
commit | de83af75e2abbd46cd9f3b52bdfcdbbbe725026c (patch) | |
tree | 29af19cda7e82a3901d3b071ea20d50a6cbe51ae /usr.bin/ssh | |
parent | ee14e3fa74154285db6607c386c59ec6784bcfa2 (diff) |
typo in comment; patch from Michael W. Bombardieri
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/umac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/umac.c b/usr.bin/ssh/umac.c index b897a840844..5a0704862fb 100644 --- a/usr.bin/ssh/umac.c +++ b/usr.bin/ssh/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 @@ -312,7 +312,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 */ |