From a1fd5c176dcb9e7cabbdb437fd2d1b149ace1e0c Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Tue, 4 Jan 2022 13:07:18 +1100 Subject: [PATCH] kdc: fix misplaced semi-colons in ASTGS_REQUEST ASTGS_REQUEST_DESC_COMMON_ELEMENTS should not terminate in a semi-colon; the consuming structure should include it. This is consistent with HEIM_SVC_REQUEST_DESC_COMMON_ELEMENTS. This fixes the build on Windows. --- kdc/kdc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kdc/kdc.h b/kdc/kdc.h index 6ccdde17c..01922bb64 100644 --- a/kdc/kdc.h +++ b/kdc/kdc.h @@ -158,11 +158,11 @@ typedef struct krb5_kdc_configuration { krb5_keyblock reply_key; \ \ krb5_pac pac; \ - uint64_t pac_attributes; + uint64_t pac_attributes #ifndef __KDC_LOCL_H__ struct astgs_request_desc { - ASTGS_REQUEST_DESC_COMMON_ELEMENTS + ASTGS_REQUEST_DESC_COMMON_ELEMENTS; }; #endif