diff options
author | phessler <> | 2019-02-10 16:42:35 +0000 |
---|---|---|
committer | phessler <> | 2019-02-10 16:42:35 +0000 |
commit | 1184ea5866cf47948bb8160972cb5082f15d7aeb (patch) | |
tree | 32daeec3a1392096a476e1f9f547d8b0799416c3 | |
parent | 6d4aaf1f9ff309085dbf415f1fe769f3165381f6 (diff) | |
download | openbsd-1184ea5866cf47948bb8160972cb5082f15d7aeb.tar.gz openbsd-1184ea5866cf47948bb8160972cb5082f15d7aeb.tar.bz2 openbsd-1184ea5866cf47948bb8160972cb5082f15d7aeb.zip |
"non-existant" is one of those words that don't exist, so use "non-existent"
instead
From Pamela Mosiejczuk, many thanks!
OK phessler@ deraadt@
-rw-r--r-- | src/lib/libssl/d1_both.c | 4 |
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; |