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.
This commit is contained in:
Luke Howard
2022-01-04 13:07:18 +11:00
parent 4803969580
commit a1fd5c176d

View File

@@ -158,11 +158,11 @@ typedef struct krb5_kdc_configuration {
krb5_keyblock reply_key; \ krb5_keyblock reply_key; \
\ \
krb5_pac pac; \ krb5_pac pac; \
uint64_t pac_attributes; uint64_t pac_attributes
#ifndef __KDC_LOCL_H__ #ifndef __KDC_LOCL_H__
struct astgs_request_desc { struct astgs_request_desc {
ASTGS_REQUEST_DESC_COMMON_ELEMENTS ASTGS_REQUEST_DESC_COMMON_ELEMENTS;
}; };
#endif #endif