From: Joseph Sutton Date: Thu, 20 Jul 2023 03:45:35 +0000 (+1200) Subject: libcli/security: Add header guard X-Git-Tag: tevent-0.16.0~397 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9aab312b7ff07448a61d9615129d14e687df3e7;p=thirdparty%2Fsamba.git libcli/security: Add header guard Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/libcli/security/claims-conversions.h b/libcli/security/claims-conversions.h index 2915675e594..3251757f0ab 100644 --- a/libcli/security/claims-conversions.h +++ b/libcli/security/claims-conversions.h @@ -16,6 +16,8 @@ * along with this program; if not, see . */ +#ifndef LIBCLI_SECURITY_CLAIMS_CONVERSIONS_H +#define LIBCLI_SECURITY_CLAIMS_CONVERSIONS_H bool claim_v1_to_ace_token(TALLOC_CTX *mem_ctx, @@ -32,3 +34,5 @@ bool add_claim_to_token(TALLOC_CTX *mem_ctx, struct security_token *token, struct CLAIM_SECURITY_ATTRIBUTE_RELATIVE_V1 *claim, const char *claim_type); + +#endif /* LIBCLI_SECURITY_CLAIMS_CONVERSIONS_H */