diff options
author | tb <> | 2025-05-04 10:53:38 +0000 |
---|---|---|
committer | tb <> | 2025-05-04 10:53:38 +0000 |
commit | 89a60fd26a27b1864f5c8d3a477e1998e2380a5e (patch) | |
tree | a7dfe7602f3f8d195acb4b32c5f4932b806e9f54 /src/lib/libssl/pqueue.c | |
parent | 68ff76b2b862c06c8ec93668da33e3bd44ca42e1 (diff) | |
download | openbsd-89a60fd26a27b1864f5c8d3a477e1998e2380a5e.tar.gz openbsd-89a60fd26a27b1864f5c8d3a477e1998e2380a5e.tar.bz2 openbsd-89a60fd26a27b1864f5c8d3a477e1998e2380a5e.zip |
sigh. pqueue_find() also needs a const treatment
Diffstat (limited to 'src/lib/libssl/pqueue.c')
-rw-r--r-- | src/lib/libssl/pqueue.c | 4 |
1 files changed, 2 insertions, 2 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 | ||