diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-10-01 10:54:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-10-01 10:54:11 +0000 |
commit | c6d1e756649408412d72e5ad2789804b2908b6f2 (patch) | |
tree | 78f1b8853ca09a80cb6e5769361b5fe73ff78d99 /source3/include | |
parent | 2e3be37878f065b8012e4bb16bede14790f240f0 (diff) | |
download | samba-c6d1e756649408412d72e5ad2789804b2908b6f2.tar.gz samba-c6d1e756649408412d72e5ad2789804b2908b6f2.tar.bz2 samba-c6d1e756649408412d72e5ad2789804b2908b6f2.zip |
- fix handling of 0 last_change_time and must_change_time
- move the arbitrary 21 day timeout to local.h
(This used to be commit 11075f543470c3283accce0246d0b2983420695a)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/local.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index e9e4fb2d35..53ef564610 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -186,4 +186,7 @@ #define SESSION_TEMPLATE "smb/%d" #endif +/* the maximum age in seconds of a password. Should be a lp_ parameter */ +#define MAX_PASSWORD_AGE (21*24*60*60) + #endif |