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 4869273 commit ec9ea22Copy full SHA for ec9ea22
src/unix/nuttx/mod.rs
@@ -54,6 +54,7 @@ s! {
54
55
pub struct passwd {
56
pub pw_name: *const c_char,
57
+ pub pw_passwd: *const c_char,
58
pub pw_uid: u32,
59
pub pw_gid: u32,
60
pub pw_gecos: *const c_char,
@@ -247,6 +248,7 @@ s! {
247
248
// for example, struct passwd, https://pubs.opengroup.org/onlinepubs/009695399/basedefs/pwd.h.html,
249
// POSIX only defines following fields in struct passwd:
250
// char *pw_name User's login name.
251
+// char *pw_passwd Encrypted password.
252
// uid_t pw_uid Numerical user ID.
253
// gid_t pw_gid Numerical group ID.
254
// char *pw_dir Initial working directory.
0 commit comments