Date: Thu, 1 Dec 2005 21:31:11 GMT From: Todd Miller <millert@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 87608 for review Message-ID: <200512012131.jB1LVB1u084314@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=87608 Change 87608 by millert@millert_g4tower on 2005/12/01 21:30:51 SEDarwin uses /etc/sedarwin not /etc/security/sedarwin since there is no existing /etc/security dir on Darwin. Affected files ... .. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/libselinux/src/sedarwin_config.c#4 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/libselinux/src/sedarwin_config.c#4 (text+ko) ==== @@ -4,25 +4,25 @@ char *selinux_default_type_path() { /*return _DEFTYPE_PATH;*/ - return "/etc/security/sedarwin/default_type"; + return "/etc/sedarwin/default_type"; } char *selinux_booleans_path() { - return "/etc/security/sedarwin/booleans"; + return "/etc/sedarwin/booleans"; } char *selinux_default_context_path() { - return "/etc/security/sedarwin/default_contexts"; + return "/etc/sedarwin/default_contexts"; } char *selinux_failsafe_context_path() { - return "/etc/security/sedarwin/failsafe_context"; + return "/etc/sedarwin/failsafe_context"; } char *selinux_user_contexts_path() { - return "/etc/security/sedarwin/user_context"; + return "/etc/sedarwin/user_context"; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200512012131.jB1LVB1u084314>