mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
libdm: replace deprecated security_context_t
Use 'char *' instead of deprecated security_context_t. In more details i.e.: https://gitlab.gnome.org/GNOME/glib/-/merge_requests/1776
This commit is contained in:
parent
57b5bc9c87
commit
75424dd692
@ -931,7 +931,7 @@ int dm_task_add_target(struct dm_task *dmt, uint64_t start, uint64_t size,
|
|||||||
|
|
||||||
#ifdef HAVE_SELINUX
|
#ifdef HAVE_SELINUX
|
||||||
static int _selabel_lookup(const char *path, mode_t mode,
|
static int _selabel_lookup(const char *path, mode_t mode,
|
||||||
security_context_t *scontext)
|
char **scontext)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SELINUX_LABEL_H
|
#ifdef HAVE_SELINUX_LABEL_H
|
||||||
if (!_selabel_handle &&
|
if (!_selabel_handle &&
|
||||||
@ -974,7 +974,7 @@ static int _is_selinux_enabled(void)
|
|||||||
int dm_prepare_selinux_context(const char *path, mode_t mode)
|
int dm_prepare_selinux_context(const char *path, mode_t mode)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SELINUX
|
#ifdef HAVE_SELINUX
|
||||||
security_context_t scontext = NULL;
|
char *scontext = NULL;
|
||||||
|
|
||||||
if (_is_selinux_enabled() <= 0)
|
if (_is_selinux_enabled() <= 0)
|
||||||
return 1;
|
return 1;
|
||||||
@ -1002,7 +1002,7 @@ int dm_prepare_selinux_context(const char *path, mode_t mode)
|
|||||||
int dm_set_selinux_context(const char *path, mode_t mode)
|
int dm_set_selinux_context(const char *path, mode_t mode)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SELINUX
|
#ifdef HAVE_SELINUX
|
||||||
security_context_t scontext = NULL;
|
char *scontext = NULL;
|
||||||
|
|
||||||
if (_is_selinux_enabled() <= 0)
|
if (_is_selinux_enabled() <= 0)
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -929,7 +929,7 @@ int dm_task_add_target(struct dm_task *dmt, uint64_t start, uint64_t size,
|
|||||||
|
|
||||||
#ifdef HAVE_SELINUX
|
#ifdef HAVE_SELINUX
|
||||||
static int _selabel_lookup(const char *path, mode_t mode,
|
static int _selabel_lookup(const char *path, mode_t mode,
|
||||||
security_context_t *scontext)
|
char **scontext)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SELINUX_LABEL_H
|
#ifdef HAVE_SELINUX_LABEL_H
|
||||||
if (!_selabel_handle &&
|
if (!_selabel_handle &&
|
||||||
@ -972,7 +972,7 @@ static int _is_selinux_enabled(void)
|
|||||||
int dm_prepare_selinux_context(const char *path, mode_t mode)
|
int dm_prepare_selinux_context(const char *path, mode_t mode)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SELINUX
|
#ifdef HAVE_SELINUX
|
||||||
security_context_t scontext = NULL;
|
char *scontext = NULL;
|
||||||
|
|
||||||
if (_is_selinux_enabled() <= 0)
|
if (_is_selinux_enabled() <= 0)
|
||||||
return 1;
|
return 1;
|
||||||
@ -1000,7 +1000,7 @@ int dm_prepare_selinux_context(const char *path, mode_t mode)
|
|||||||
int dm_set_selinux_context(const char *path, mode_t mode)
|
int dm_set_selinux_context(const char *path, mode_t mode)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SELINUX
|
#ifdef HAVE_SELINUX
|
||||||
security_context_t scontext = NULL;
|
char *scontext = NULL;
|
||||||
|
|
||||||
if (_is_selinux_enabled() <= 0)
|
if (_is_selinux_enabled() <= 0)
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user