mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-05 13:18:17 +03:00
12 lines
248 B
Rust
12 lines
248 B
Rust
use crate::SePolicy;
|
|
use std::ptr;
|
|
|
|
impl SePolicy {
|
|
/// Reset the SELinux filesystem creation context.
|
|
pub fn fscreatecon_cleanup() {
|
|
unsafe {
|
|
ffi::ostree_sepolicy_fscreatecon_cleanup(ptr::null_mut());
|
|
}
|
|
}
|
|
}
|