libselinux/libselinux-rhat.patch
2005-10-25 22:03:43 +00:00

63 lines
2.5 KiB
Diff

diff --exclude-from=exclude -N -u -r nsalibselinux/include/selinux/selinux.h libselinux-1.27.14/include/selinux/selinux.h
--- nsalibselinux/include/selinux/selinux.h 2005-10-25 15:15:53.000000000 -0400
+++ libselinux-1.27.14/include/selinux/selinux.h 2005-10-25 17:54:34.000000000 -0400
@@ -359,6 +359,7 @@
extern const char *selinux_customizable_types_path(void);
extern const char *selinux_users_path(void);
extern const char *selinux_usersconf_path(void);
+extern const char *selinux_translations_path(void);
extern const char *selinux_path(void);
/* Check a permission in the passwd class.
diff --exclude-from=exclude -N -u -r nsalibselinux/src/file_path_suffixes.h libselinux-1.27.14/src/file_path_suffixes.h
--- nsalibselinux/src/file_path_suffixes.h 2005-10-25 15:15:53.000000000 -0400
+++ libselinux-1.27.14/src/file_path_suffixes.h 2005-10-25 17:53:04.000000000 -0400
@@ -13,3 +13,4 @@
S_(CUSTOMIZABLE_TYPES, "/contexts/customizable_types")
S_(USERS_DIR, "/users/")
S_(SEUSERS, "/seusers")
+S_(TRANSLATIONS, "/setrans.conf")
diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinux_config.c libselinux-1.27.14/src/selinux_config.c
--- nsalibselinux/src/selinux_config.c 2005-10-25 15:15:53.000000000 -0400
+++ libselinux-1.27.14/src/selinux_config.c 2005-10-25 17:53:41.000000000 -0400
@@ -32,7 +32,8 @@
#define CUSTOMIZABLE_TYPES 11
#define USERS_DIR 12
#define SEUSERS 13
-#define NEL 14
+#define TRANSLATIONS 14
+#define NEL 15
/* New layout is relative to SELINUXDIR/policytype. */
static char *file_paths[NEL];
@@ -303,10 +304,16 @@
const char *selinux_users_path() {
return get_path(USERS_DIR);
}
+hidden_def(selinux_users_path)
+
const char *selinux_usersconf_path() {
return get_path(SEUSERS);
}
-
-hidden_def(selinux_users_path)
hidden_def(selinux_usersconf_path)
+const char *selinux_translations_path()
+{
+ return get_path(TRANSLATIONS);
+}
+hidden_def(selinux_translations_path)
+
diff --exclude-from=exclude -N -u -r nsalibselinux/src/selinux_internal.h libselinux-1.27.14/src/selinux_internal.h
--- nsalibselinux/src/selinux_internal.h 2005-10-25 15:15:53.000000000 -0400
+++ libselinux-1.27.14/src/selinux_internal.h 2005-10-25 18:01:47.000000000 -0400
@@ -60,6 +60,7 @@
hidden_proto(matchpathcon_init)
hidden_proto(selinux_users_path)
hidden_proto(selinux_usersconf_path);
+hidden_proto(selinux_translations_path);
hidden_proto(selinux_getenforcemode);
extern int context_translations hidden;