fixup variable naming

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-09-11 13:57:21 +02:00
parent 175eeb870d
commit 299a2f18b2
1 changed files with 2 additions and 2 deletions

View File

@ -200,8 +200,8 @@ where
/// Returns the Unix uid/gid for the sepcified system user.
pub fn getpwnam_ugid(username: &str) -> Result<(libc::uid_t, libc::gid_t), Error> {
let username = std::ffi::CString::new(username).unwrap();
let info = unsafe { libc::getpwnam(username.as_ptr()) };
let c_username = std::ffi::CString::new(username).unwrap();
let info = unsafe { libc::getpwnam(c_username.as_ptr()) };
if info == std::ptr::null_mut() {
bail!("getwpnam '{}' failed", username);
}