diff options
author | Michael Kerrisk <mtk.manpages@gmail.com> | 2013-01-22 00:18:23 +0100 |
---|---|---|
committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2013-01-25 21:45:09 +0100 |
commit | aed50605976d77933e90dabcb1096795d07bba76 (patch) | |
tree | 5dddfc4ae52b9b980085470ed838e13ee98a75ea | |
parent | 9088203ed3ef9c16fb7a473af2631fc99445f4e3 (diff) |
getspnam.3: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r-- | man3/getspnam.3 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/man3/getspnam.3 b/man3/getspnam.3 index 10c54bf2..fb938963 100644 --- a/man3/getspnam.3 +++ b/man3/getspnam.3 @@ -195,16 +195,18 @@ The shadow password structure is defined in \fI<shadow.h>\fP as follows: struct spwd { char *sp_namp; /* Login name */ char *sp_pwdp; /* Encrypted password */ - long sp_lstchg; /* Date of last change (measured - in days since 1970-01-01 00:00:00 +0000 (UTC)) */ + long sp_lstchg; /* Date of last change + (measured in days since + 1970-01-01 00:00:00 +0000 (UTC)) */ long sp_min; /* Min # of days between changes */ long sp_max; /* Max # of days between changes */ long sp_warn; /* # of days before password expires to warn user to change it */ long sp_inact; /* # of days after password expires until account is disabled */ - long sp_expire; /* Date when account expires (measured - in days since 1970-01-01 00:00:00 +0000 (UTC)) */ + long sp_expire; /* Date when account expires + (measured in days since + 1970-01-01 00:00:00 +0000 (UTC)) */ unsigned long sp_flag; /* Reserved */ }; .fi |