summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libssl/d1_both.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/d1_both.c b/src/lib/libssl/d1_both.c
index f75604ef68..8f3cc610b8 100644
--- a/src/lib/libssl/d1_both.c
+++ b/src/lib/libssl/d1_both.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: d1_both.c,v 1.56 2018/11/08 22:28:52 jsing Exp $ */ 1/* $OpenBSD: d1_both.c,v 1.57 2019/02/10 16:42:35 phessler Exp $ */
2/* 2/*
3 * DTLS implementation written by Nagendra Modadugu 3 * DTLS implementation written by Nagendra Modadugu
4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. 4 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -1046,7 +1046,7 @@ dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
1046 item = pqueue_find(s->d1->sent_messages, seq64be); 1046 item = pqueue_find(s->d1->sent_messages, seq64be);
1047 if (item == NULL) { 1047 if (item == NULL) {
1048#ifdef DEBUG 1048#ifdef DEBUG
1049 fprintf(stderr, "retransmit: message %d non-existant\n", seq); 1049 fprintf(stderr, "retransmit: message %d non-existent\n", seq);
1050#endif 1050#endif
1051 *found = 0; 1051 *found = 0;
1052 return 0; 1052 return 0;