summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2020-05-13 17:54:26 +0000
committerjsing <>2020-05-13 17:54:26 +0000
commited1be1840e464645089187f7825ce1194c9f46f3 (patch)
treef2f8e2ad04a180cadab6b83d4cf340510fcdb2df /src
parentf6ec5bc3dcc9fa827f0aa4e61d3f864d41202d94 (diff)
downloadopenbsd-ed1be1840e464645089187f7825ce1194c9f46f3.tar.gz
openbsd-ed1be1840e464645089187f7825ce1194c9f46f3.tar.bz2
openbsd-ed1be1840e464645089187f7825ce1194c9f46f3.zip
Remove a no longer relevant XXX comment.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/tls13_record_layer.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/tls13_record_layer.c b/src/lib/libssl/tls13_record_layer.c
index 82a49ae425..ab006b3b1a 100644
--- a/src/lib/libssl/tls13_record_layer.c
+++ b/src/lib/libssl/tls13_record_layer.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_record_layer.c,v 1.41 2020/05/11 18:08:11 jsing Exp $ */ 1/* $OpenBSD: tls13_record_layer.c,v 1.42 2020/05/13 17:54:26 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -876,8 +876,6 @@ tls13_record_layer_read_internal(struct tls13_record_layer *rl,
876 if (CBS_len(&rl->rbuf_cbs) == 0) { 876 if (CBS_len(&rl->rbuf_cbs) == 0) {
877 if ((ret = tls13_record_layer_read_record(rl)) <= 0) 877 if ((ret = tls13_record_layer_read_record(rl)) <= 0)
878 return ret; 878 return ret;
879
880 /* XXX - need to check record version. */
881 } 879 }
882 880
883 /* 881 /*