summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2012-12-11 22:51:45 +0000
committersthen <sthen@openbsd.org>2012-12-11 22:51:45 +0000
commita3ed76a5e2077879fb3df4ff1f6bbbd390b4ce6f (patch)
tree323ee0b3b49f77f1f81dc15d921484ff5307e91b
parenttest the integrity of the packets; with djm@ (diff)
downloadwireguard-openbsd-a3ed76a5e2077879fb3df4ff1f6bbbd390b4ce6f.tar.xz
wireguard-openbsd-a3ed76a5e2077879fb3df4ff1f6bbbd390b4ce6f.zip
fix typo, s/tem/etm in hmac-ripemd160-tem. ok markus@
-rw-r--r--usr.bin/ssh/mac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/mac.c b/usr.bin/ssh/mac.c
index 27f59a3d6c5..621c6098189 100644
--- a/usr.bin/ssh/mac.c
+++ b/usr.bin/ssh/mac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mac.c,v 1.20 2012/12/11 22:31:18 markus Exp $ */
+/* $OpenBSD: mac.c,v 1.21 2012/12/11 22:51:45 sthen Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
@@ -73,7 +73,7 @@ struct {
{ "hmac-sha2-512-etm@openssh.com", SSH_EVP, EVP_sha512, 0, 0, 0, 1 },
{ "hmac-md5-etm@openssh.com", SSH_EVP, EVP_md5, 0, 0, 0, 1 },
{ "hmac-md5-96-etm@openssh.com", SSH_EVP, EVP_md5, 96, 0, 0, 1 },
- { "hmac-ripemd160-tem@openssh.com", SSH_EVP, EVP_ripemd160, 0, 0, 0, 1 },
+ { "hmac-ripemd160-etm@openssh.com", SSH_EVP, EVP_ripemd160, 0, 0, 0, 1 },
{ "umac-64-etm@openssh.com", SSH_UMAC, NULL, 0, 128, 64, 1 },
{ "umac-128-etm@openssh.com", SSH_UMAC128, NULL, 0, 128, 128, 1 },