diff --git a/Xargo.toml b/Xargo.toml new file mode 100644 index 0000000000..0c493ec3d6 --- /dev/null +++ b/Xargo.toml @@ -0,0 +1,6 @@ +[dependencies.std] +features = ["panic_unwind", "backtrace"] + +#[dependencies.test] +#stage = 1 + diff --git a/src/config/file.rs b/src/config/file.rs index 466027df22..e6e693feb4 100644 --- a/src/config/file.rs +++ b/src/config/file.rs @@ -1,6 +1,6 @@ use Result; -use libc::chown; +use libc::{chown, gid_t, uid_t}; use std::io::{Error, Write}; use std::ffi::{CString, OsStr}; @@ -71,7 +71,7 @@ impl FileConfig { // chown let c_path = CString::new(path.as_os_str().as_bytes()).unwrap(); let ret = unsafe { - chown(c_path.as_ptr(), uid, gid) + chown(c_path.as_ptr(), uid as uid_t, gid as gid_t) }; // credit to uutils if ret == 0 {