summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_pkt.c
diff options
context:
space:
mode:
authorbeck <beck@openbsd.org>2017-01-26 08:19:43 +0000
committerbeck <beck@openbsd.org>2017-01-26 08:19:43 +0000
commit7dae16cb3741dd795f1ae71ef3fceb0d0a22170a (patch)
tree0f32a8056559cb4a57bebac96dd76e0a29544cf2 /lib/libssl/ssl_pkt.c
parentLimit the number of sequential empty records that we will process (diff)
downloadwireguard-openbsd-7dae16cb3741dd795f1ae71ef3fceb0d0a22170a.tar.xz
wireguard-openbsd-7dae16cb3741dd795f1ae71ef3fceb0d0a22170a.zip
english is hard.
Diffstat (limited to 'lib/libssl/ssl_pkt.c')
-rw-r--r--lib/libssl/ssl_pkt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_pkt.c b/lib/libssl/ssl_pkt.c
index a58a4b66566..2fa7852b80b 100644
--- a/lib/libssl/ssl_pkt.c
+++ b/lib/libssl/ssl_pkt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_pkt.c,v 1.4 2017/01/26 07:20:57 beck Exp $ */
+/* $OpenBSD: ssl_pkt.c,v 1.5 2017/01/26 08:19:43 beck Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -538,7 +538,7 @@ ssl3_get_record(SSL *s)
if (rr->length == 0) {
/*
* CBC countermeasures for known IV weaknesses
- * can legitimately insert single empty record,
+ * can legitimately insert a single empty record,
* so we allow ourselves to read once past a single
* empty record without forcing want_read.
*/