diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-10-23 18:38:01 +0200 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-10-25 18:35:28 -0400 |
commit | d6492c6bb3c453d4f427a3ea16b046e7050d7eed (patch) | |
tree | fca81154528a66d0dcf9a4abc13a4c20569a0e95 | |
parent | 7ede4612365f6420a3aad963d0d8bb7bd390344d (diff) |
selinux: drop 3 unused function prototypes
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
-rw-r--r-- | src/shared/selinux-util.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/shared/selinux-util.h b/src/shared/selinux-util.h index d34efb977e..22f529a41c 100644 --- a/src/shared/selinux-util.h +++ b/src/shared/selinux-util.h @@ -37,17 +37,13 @@ void mac_selinux_socket_clear(void); int mac_selinux_context_set(const char *path, mode_t mode); void mac_selinux_context_clear(void); -void mac_selinux_free(const char *label); int mac_selinux_mkdir(const char *path, mode_t mode); int mac_selinux_get_create_label_from_exe(const char *exe, char **label); int mac_selinux_get_our_label(char **label); int mac_selinux_get_child_mls_label(int socket_fd, const char *exec, char **label); +void mac_selinux_free(const char *label); int mac_selinux_bind(int fd, const struct sockaddr *addr, socklen_t addrlen); int mac_selinux_apply(const char *path, const char *label); - -int mac_selinux_write_one_line_file_atomic(const char *fn, const char *line); -int mac_selinux_write_env_file(const char *fname, char **l); -int mac_selinux_label_fopen_temporary(const char *path, FILE **_f, char **_temp_path); |