Home
last modified time | relevance | path

Searched refs:MAXHISTORY (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/passwdutil/
H A Dfiles_attr.c438 if (histsize > MAXHISTORY) in files_checkhistory()
439 histsize = MAXHISTORY; in files_checkhistory()
529 char buf[MAX_LOGNAME + MAXHISTORY + in files_getattr()
530 (MAXHISTORY * CRYPT_MAXCIPHERTEXTLEN)+1]; in files_getattr()
1148 char buf[MAX_LOGNAME + MAXHISTORY + in files_update_history()
1149 (MAXHISTORY * CRYPT_MAXCIPHERTEXTLEN)+1]; in files_update_history()
1160 if (histsize > MAXHISTORY) in files_update_history()
1161 histsize = MAXHISTORY; in files_update_history()
1206 for (i = 0; i < MAXHISTORY-1; i++) { in files_update_history()
H A Dpasswdutil.h181 #define MAXHISTORY 26 /* max depth of history 1 yr every 2 weeks */ macro