From: <mil...@us...> - 2008-03-06 16:46:12
|
Revision: 2843 http://selinux.svn.sourceforge.net/selinux/?rev=2843&view=rev Author: millertc Date: 2008-03-06 08:45:46 -0800 (Thu, 06 Mar 2008) Log Message: ----------- Fix a typo in the header guard. Modified Paths: -------------- trunk/checkpolicy/policy_define.h Modified: trunk/checkpolicy/policy_define.h =================================================================== --- trunk/checkpolicy/policy_define.h 2008-03-05 14:47:09 UTC (rev 2842) +++ trunk/checkpolicy/policy_define.h 2008-03-06 16:45:46 UTC (rev 2843) @@ -1,7 +1,7 @@ /* Functions used to define policy grammar components. */ -#ifndef __POLICY_DEFINE_H__ -#define POLICY_DEFINE_H__ +#ifndef _POLICY_DEFINE_H_ +#define _POLICY_DEFINE_H_ /* * We need the following so we have a valid error return code in yacc @@ -55,4 +55,4 @@ role_datum_t *merge_roles_dom(role_datum_t *r1,role_datum_t *r2); uintptr_t define_cexpr(uint32_t expr_type, uintptr_t arg1, uintptr_t arg2); -#endif /* POLICY_DEFINE_H__ */ +#endif /* _POLICY_DEFINE_H_ */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |