aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2021-03-15 12:31:09 +0000
committerKyle Evans <kevans@FreeBSD.org>2021-03-15 12:36:02 +0000
commitff92a03616c5caec5ce0c42dd76722e1b6dc9e51 (patch)
treefc2f92d828165a23570983b785ac26bc1711cc1c
parentcefb959e18efd7da76724fdacdfb7031ec06fa94 (diff)
downloadsrc-ff92a03616c5caec5ce0c42dd76722e1b6dc9e51.tar.gz
src-ff92a03616c5caec5ce0c42dd76722e1b6dc9e51.zip
if_wg: fix build with DIAGNOSTICS
This file got resynced with OpenBSD to pick up fixes that had taken place after the version initially ported to FreeBSD. KASSERT there is more like MPASS here. Reported by: David Wolfskill <david@catwhisker.org>
-rw-r--r--sys/dev/if_wg/wg_noise.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/if_wg/wg_noise.c b/sys/dev/if_wg/wg_noise.c
index 373a8578a9f3..ae527eb99bde 100644
--- a/sys/dev/if_wg/wg_noise.c
+++ b/sys/dev/if_wg/wg_noise.c
@@ -784,10 +784,10 @@ noise_kdf(uint8_t *a, uint8_t *b, uint8_t *c, const uint8_t *x,
uint8_t sec[BLAKE2S_HASH_SIZE];
#ifdef DIAGNOSTIC
- KASSERT(a_len <= BLAKE2S_HASH_SIZE && b_len <= BLAKE2S_HASH_SIZE &&
+ MPASS(a_len <= BLAKE2S_HASH_SIZE && b_len <= BLAKE2S_HASH_SIZE &&
c_len <= BLAKE2S_HASH_SIZE);
- KASSERT(!(b || b_len || c || c_len) || (a && a_len));
- KASSERT(!(c || c_len) || (b && b_len));
+ MPASS(!(b || b_len || c || c_len) || (a && a_len));
+ MPASS(!(c || c_len) || (b && b_len));
#endif
/* Extract entropy from "x" into sec */