diff options
author | rwatson <rwatson@FreeBSD.org> | 2006-03-19 15:37:04 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2006-03-19 15:37:04 +0000 |
commit | 4931de581d6f7c7b1ff41802db8388d95735d3d3 (patch) | |
tree | 9d190bd9911d25df877714fdb133b7ec3ae2322d /sys | |
parent | 5115d4eedeaf00111b361cfb1912a8779de5a5e3 (diff) | |
download | FreeBSD-src-4931de581d6f7c7b1ff41802db8388d95735d3d3.zip FreeBSD-src-4931de581d6f7c7b1ff41802db8388d95735d3d3.tar.gz |
Merge Perforce change 93568 from TrustedBSD audit3 branch:
Normalize nested include guards.
Obtained from: TrustedBSD Project
Diffstat (limited to 'sys')
-rw-r--r-- | sys/security/audit/audit.h | 6 | ||||
-rw-r--r-- | sys/security/audit/audit_private.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/security/audit/audit.h b/sys/security/audit/audit.h index d471c9c..b63ed12 100644 --- a/sys/security/audit/audit.h +++ b/sys/security/audit/audit.h @@ -34,8 +34,8 @@ * necessary for the kernel as a whole to interact with the audit subsystem. */ -#ifndef _BSM_AUDIT_KERNEL_H -#define _BSM_AUDIT_KERNEL_H +#ifndef _SECURITY_AUDIT_KERNEL_H_ +#define _SEUCRITY_AUDIT_KERNEL_H_ #ifndef _KERNEL #error "no user-serviceable parts inside" @@ -236,4 +236,4 @@ void audit_proc_free(struct proc *p); #endif /* AUDIT */ -#endif /* !_BSM_AUDIT_KERNEL_H */ +#endif /* !_SECURITY_AUDIT_KERNEL_H_ */ diff --git a/sys/security/audit/audit_private.h b/sys/security/audit/audit_private.h index 41efe90..306036b 100644 --- a/sys/security/audit/audit_private.h +++ b/sys/security/audit/audit_private.h @@ -34,8 +34,8 @@ * within the audit implementation. */ -#ifndef _BSM_AUDIT_PRIVATE_H -#define _BSM_AUDIT_PRIVATE_H +#ifndef _SECURITY_AUDIT_PRIVATE_H_ +#define _SECURITY_AUDIT_PRIVATE_H_ #ifndef _KERNEL #error "no user-serviceable parts inside" @@ -302,4 +302,4 @@ void audit_rotate_vnode(struct ucred *cred, */ void audit_pipe_submit(void *record, u_int record_len); -#endif /* ! _BSM_AUDIT_PRIVATE_H */ +#endif /* ! _SECURITY_AUDIT_PRIVATE_H_ */ |