diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | monitor_wrap.c | 4 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ | |||
1 | 20020620 | ||
2 | - (bal) OpenBSD CVS Sync | ||
3 | - todd@cvs.openbsd.org 2002/06/14 21:35:00 | ||
4 | [monitor_wrap.c] | ||
5 | spelling; from Brian Poole <raj@cerias.purdue.edu> | ||
6 | |||
1 | 20020613 | 7 | 20020613 |
2 | - (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com | 8 | - (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com |
3 | 9 | ||
@@ -925,4 +931,4 @@ | |||
925 | - (stevesk) entropy.c: typo in debug message | 931 | - (stevesk) entropy.c: typo in debug message |
926 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 932 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
927 | 933 | ||
928 | $Id: ChangeLog,v 1.2216 2002/06/13 21:34:57 mouring Exp $ | 934 | $Id: ChangeLog,v 1.2217 2002/06/20 23:53:53 mouring Exp $ |
diff --git a/monitor_wrap.c b/monitor_wrap.c index fca5ffe50..65998a1e1 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c | |||
@@ -25,7 +25,7 @@ | |||
25 | */ | 25 | */ |
26 | 26 | ||
27 | #include "includes.h" | 27 | #include "includes.h" |
28 | RCSID("$OpenBSD: monitor_wrap.c,v 1.8 2002/06/04 23:05:49 markus Exp $"); | 28 | RCSID("$OpenBSD: monitor_wrap.c,v 1.9 2002/06/14 21:35:00 todd Exp $"); |
29 | 29 | ||
30 | #include <openssl/bn.h> | 30 | #include <openssl/bn.h> |
31 | #include <openssl/dh.h> | 31 | #include <openssl/dh.h> |
@@ -425,7 +425,7 @@ mm_newkeys_from_blob(u_char *blob, int blen) | |||
425 | mac->enabled = buffer_get_int(&b); | 425 | mac->enabled = buffer_get_int(&b); |
426 | mac->key = buffer_get_string(&b, &len); | 426 | mac->key = buffer_get_string(&b, &len); |
427 | if (len > mac->key_len) | 427 | if (len > mac->key_len) |
428 | fatal("%s: bad mac key lenght: %d > %d", __func__, len, | 428 | fatal("%s: bad mac key length: %d > %d", __func__, len, |
429 | mac->key_len); | 429 | mac->key_len); |
430 | mac->key_len = len; | 430 | mac->key_len = len; |
431 | 431 | ||