summaryrefslogtreecommitdiff
path: root/src/lib/libssl/pqueue.c
diff options
context:
space:
mode:
authortb <>2025-05-04 10:53:38 +0000
committertb <>2025-05-04 10:53:38 +0000
commit89a60fd26a27b1864f5c8d3a477e1998e2380a5e (patch)
treea7dfe7602f3f8d195acb4b32c5f4932b806e9f54 /src/lib/libssl/pqueue.c
parent68ff76b2b862c06c8ec93668da33e3bd44ca42e1 (diff)
downloadopenbsd-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.c4
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
156pitem * 156pitem *
157pqueue_find(pqueue_s *pq, unsigned char *prio64be) 157pqueue_find(pqueue_s *pq, const unsigned char *prio64be)
158{ 158{
159 pitem *next; 159 pitem *next;
160 160