aboutsummaryrefslogtreecommitdiff
path: root/include/shadow_.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-13 23:22:00 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-13 23:22:00 +0000
commit87468857f685863cd763ae361c2cb3be0ee53a68 (patch)
treea8fec29d731170b2a36b27d18e2d9720c970bf57 /include/shadow_.h
parentf7fcca4af7593218f2185e69715ab3ae16c6cf29 (diff)
downloadbusybox-w32-87468857f685863cd763ae361c2cb3be0ee53a68.tar.gz
busybox-w32-87468857f685863cd763ae361c2cb3be0ee53a68.tar.bz2
busybox-w32-87468857f685863cd763ae361c2cb3be0ee53a68.zip
style fixes
Diffstat (limited to 'include/shadow_.h')
-rw-r--r--include/shadow_.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/shadow_.h b/include/shadow_.h
index fb2153c52..92bcde864 100644
--- a/include/shadow_.h
+++ b/include/shadow_.h
@@ -37,13 +37,13 @@
37struct spwd { 37struct spwd {
38 char *sp_namp; /* Login name */ 38 char *sp_namp; /* Login name */
39 char *sp_pwdp; /* Encrypted password */ 39 char *sp_pwdp; /* Encrypted password */
40 long int sp_lstchg; /* Date of last change */ 40 long sp_lstchg; /* Date of last change */
41 long int sp_min; /* Minimum number of days between changes */ 41 long sp_min; /* Minimum number of days between changes */
42 long int sp_max; /* Maximum number of days between changes */ 42 long sp_max; /* Maximum number of days between changes */
43 long int sp_warn; /* Number of days to warn user to change the password */ 43 long sp_warn; /* Number of days to warn user to change the password */
44 long int sp_inact; /* Number of days the account may be inactive */ 44 long sp_inact; /* Number of days the account may be inactive */
45 long int sp_expire; /* Number of days since 1970-01-01 until account expires */ 45 long sp_expire; /* Number of days since 1970-01-01 until account expires */
46 unsigned long int sp_flag; /* Reserved */ 46 unsigned long sp_flag; /* Reserved */
47}; 47};
48 48
49 49