summaryrefslogtreecommitdiff
path: root/src/unistd.rs
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2022-08-11 13:49:32 -0400
committerJack O'Connor <oconnor663@gmail.com>2022-08-11 17:43:48 -0700
commit901857f85229e946558c456032ad8e40abae8006 (patch)
tree7267ae65256b4a085e565840a7f4b3be8538a698 /src/unistd.rs
parentd9a79042524af17c49f5681cfc576d758021808f (diff)
downloadnix-901857f85229e946558c456032ad8e40abae8006.zip
minor terminology fix in User docs
Passwords are hashed, not encrypted.
Diffstat (limited to 'src/unistd.rs')
-rw-r--r--src/unistd.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd.rs b/src/unistd.rs
index 70a06b02..dc8ea820 100644
--- a/src/unistd.rs
+++ b/src/unistd.rs
@@ -2937,7 +2937,7 @@ feature! {
pub struct User {
/// Username
pub name: String,
- /// User password (probably encrypted)
+ /// User password (probably hashed)
pub passwd: CString,
/// User ID
pub uid: Uid,