From 8fbd69a9e89a9f53c5f5239352f10b03bff5264d Mon Sep 17 00:00:00 2001 From: jsg Date: Sun, 15 Sep 2024 05:49:05 +0000 Subject: [PATCH] __STDC_VERSION__ not __STDC_VERSION; ok miod@ --- usr.sbin/radiusd/eap2mschap_local.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/radiusd/eap2mschap_local.h b/usr.sbin/radiusd/eap2mschap_local.h index b3d523d920f..7db1e20ab5b 100644 --- a/usr.sbin/radiusd/eap2mschap_local.h +++ b/usr.sbin/radiusd/eap2mschap_local.h @@ -1,4 +1,4 @@ -/* $OpenBSD: eap2mschap_local.h,v 1.2 2024/07/16 06:18:20 miod Exp $ */ +/* $OpenBSD: eap2mschap_local.h,v 1.3 2024/09/15 05:49:05 jsg Exp $ */ /* * Copyright (c) 2024 Internet Initiative Japan Inc. @@ -70,7 +70,7 @@ struct eap_mschap_challenge { uint8_t chall[16]; char chap_name[0]; } __packed; -#if defined(__STDC_VERSION__) && __STDC_VERSION >= 201112L +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L static_assert(sizeof(struct eap_mschap_challenge) == 26, ""); static_assert(offsetof(struct eap_mschap_challenge, chap) == 5, ""); static_assert(offsetof(struct eap_mschap_challenge, chall) == 10, ""); @@ -87,7 +87,7 @@ struct eap_mschap_response { uint8_t flags; uint8_t chap_name[0]; } __packed; -#if defined(__STDC_VERSION__) && __STDC_VERSION >= 201112L +#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L static_assert(sizeof(struct eap_mschap_response) == 59, ""); static_assert(offsetof(struct eap_mschap_response, chap) == 5, ""); static_assert(offsetof(struct eap_mschap_response, peerchall) == 10, ""); -- 2.20.1