mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
Remove unused struct fields
While it might be nice to have the full `Passwd` struct around should anything ever change in the future, there's really no reason why Alacritty would need this information. So just removing things for now makes more sense than adding `#[allow(unused)]`.
This commit is contained in:
parent
990f3f81f0
commit
c96047dc73
1 changed files with 0 additions and 8 deletions
|
@ -82,10 +82,6 @@ fn set_controlling_terminal(fd: c_int) {
|
|||
#[derive(Debug)]
|
||||
struct Passwd<'a> {
|
||||
name: &'a str,
|
||||
passwd: &'a str,
|
||||
uid: libc::uid_t,
|
||||
gid: libc::gid_t,
|
||||
gecos: &'a str,
|
||||
dir: &'a str,
|
||||
shell: &'a str,
|
||||
}
|
||||
|
@ -122,10 +118,6 @@ fn get_pw_entry(buf: &mut [i8; 1024]) -> Passwd<'_> {
|
|||
// Build a borrowed Passwd struct.
|
||||
Passwd {
|
||||
name: unsafe { CStr::from_ptr(entry.pw_name).to_str().unwrap() },
|
||||
passwd: unsafe { CStr::from_ptr(entry.pw_passwd).to_str().unwrap() },
|
||||
uid: entry.pw_uid,
|
||||
gid: entry.pw_gid,
|
||||
gecos: unsafe { CStr::from_ptr(entry.pw_gecos).to_str().unwrap() },
|
||||
dir: unsafe { CStr::from_ptr(entry.pw_dir).to_str().unwrap() },
|
||||
shell: unsafe { CStr::from_ptr(entry.pw_shell).to_str().unwrap() },
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue