We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0987973 commit df22514Copy full SHA for df22514
src/unix/nuttx/mod.rs
@@ -52,6 +52,7 @@ s! {
52
53
pub struct passwd {
54
pub pw_name: *const c_char,
55
+ pub pw_passwd: *const c_char,
56
pub pw_uid: u32,
57
pub pw_gid: u32,
58
pub pw_gecos: *const c_char,
@@ -245,6 +246,7 @@ s! {
245
246
// for example, struct passwd, https://pubs.opengroup.org/onlinepubs/009695399/basedefs/pwd.h.html,
247
// POSIX only defines following fields in struct passwd:
248
// char *pw_name User's login name.
249
+// char *pw_passwd Encrypted password.
250
// uid_t pw_uid Numerical user ID.
251
// gid_t pw_gid Numerical group ID.
252
// char *pw_dir Initial working directory.
0 commit comments