]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
libcli/security: Add header guard
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Thu, 20 Jul 2023 03:45:35 +0000 (15:45 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 27 Sep 2023 02:43:28 +0000 (02:43 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
libcli/security/claims-conversions.h

index 2915675e5945ba156fcb86eb05994b744ed7d03c..3251757f0abc33dbfef3825990b2933d9afe1a7f 100644 (file)
@@ -16,6 +16,8 @@
  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#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 */