Fixed struct layout

This commit is contained in:
Florian Wilkens
2015-05-04 00:43:44 +02:00
parent 8a9d6f90c9
commit 914f5e3983
+2 -2
View File
@@ -155,11 +155,11 @@ struct c_passwd {
pub pw_passwd: *const c_char,
pub pw_uid: uid_t, // user ID
pub pw_gid: gid_t, // group ID
pub pw_change: time_t,
pub pw_class: *const c_char,
pub pw_gecos: *const c_char, // full name
pub pw_dir: *const c_char, // login dir
pub pw_shell: *const c_char, // login shell
pub pw_change: time_t,
pub pw_class: *const c_char,
pub pw_expire: time_t, // password expiry time
}