diff options
-rw-r--r-- | src/lib/libssl/pqueue.c | 4 | ||||
-rw-r--r-- | src/lib/libssl/pqueue.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/pqueue.c b/src/lib/libssl/pqueue.c index 580b878534..aafd0a704e 100644 --- a/src/lib/libssl/pqueue.c +++ b/src/lib/libssl/pqueue.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pqueue.c,v 1.6 2025/05/04 10:47:02 tb Exp $ */ | 1 | /* $OpenBSD: pqueue.c,v 1.7 2025/05/04 10:53:38 tb 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. |
@@ -154,7 +154,7 @@ pqueue_pop(pqueue_s *pq) | |||
154 | } | 154 | } |
155 | 155 | ||
156 | pitem * | 156 | pitem * |
157 | pqueue_find(pqueue_s *pq, unsigned char *prio64be) | 157 | pqueue_find(pqueue_s *pq, const unsigned char *prio64be) |
158 | { | 158 | { |
159 | pitem *next; | 159 | pitem *next; |
160 | 160 | ||
diff --git a/src/lib/libssl/pqueue.h b/src/lib/libssl/pqueue.h index da13ffcee9..79ddf7a105 100644 --- a/src/lib/libssl/pqueue.h +++ b/src/lib/libssl/pqueue.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pqueue.h,v 1.6 2025/05/04 10:47:46 tb Exp $ */ | 1 | /* $OpenBSD: pqueue.h,v 1.7 2025/05/04 10:53:38 tb Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * DTLS implementation written by Nagendra Modadugu | 4 | * DTLS implementation written by Nagendra Modadugu |
@@ -82,7 +82,7 @@ void pqueue_free(pqueue pq); | |||
82 | pitem *pqueue_insert(pqueue pq, pitem *item); | 82 | pitem *pqueue_insert(pqueue pq, pitem *item); |
83 | pitem *pqueue_peek(pqueue pq); | 83 | pitem *pqueue_peek(pqueue pq); |
84 | pitem *pqueue_pop(pqueue pq); | 84 | pitem *pqueue_pop(pqueue pq); |
85 | pitem *pqueue_find(pqueue pq, unsigned char *prio64be); | 85 | pitem *pqueue_find(pqueue pq, const unsigned char *prio64be); |
86 | pitem *pqueue_iterator(pqueue pq); | 86 | pitem *pqueue_iterator(pqueue pq); |
87 | pitem *pqueue_next(piterator *iter); | 87 | pitem *pqueue_next(piterator *iter); |
88 | 88 | ||