Cope with recent rt_hash() const changes.
authoranton <anton@openbsd.org>
Sat, 11 Nov 2023 07:34:54 +0000 (07:34 +0000)
committeranton <anton@openbsd.org>
Sat, 11 Nov 2023 07:34:54 +0000 (07:34 +0000)
regress/sys/net/rtable/kern_compat.h
regress/sys/net/rtable/util.c

index 80e40a2..0bbe170 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: kern_compat.h,v 1.15 2023/07/07 20:38:17 bluhm Exp $  */
+/*     $OpenBSD: kern_compat.h,v 1.16 2023/11/11 07:34:54 anton Exp $  */
 
 #ifndef _KERN_COMPAT_H_
 #define _KERN_COMPAT_H_
@@ -88,6 +88,6 @@ extern struct domain *domains[];
 
 struct rtentry;
 
-int     rt_hash(struct rtentry *, struct sockaddr *, uint32_t *);
+int     rt_hash(struct rtentry *, const struct sockaddr *, uint32_t *);
 
 #endif /* _KERN_COMPAT_H_ */
index 58cc81e..fc17db1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: util.c,v 1.13 2023/07/07 20:38:17 bluhm Exp $ */
+/*     $OpenBSD: util.c,v 1.14 2023/11/11 07:34:54 anton Exp $ */
 
 /*
  * Copyright (c) 2015 Martin Pieuchot
@@ -516,7 +516,7 @@ static uint32_t             rt_hashjitter;
 } while (0)
 
 int
-rt_hash(struct rtentry *rt, struct sockaddr *dst, uint32_t *src)
+rt_hash(struct rtentry *rt, const struct sockaddr *dst, uint32_t *src)
 {
        uint32_t a, b, c;