Searched defs:idledays (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/pam_modules/unix_account/
H A Dunix_acct.c187 int idledays = -1; local
195 idledays = 7 * atoi(ptr);
214 /* Password has aged. Has it aged more than idledays ? */
215 if (idledays < 0) /* IDLEWEEKS not configured */
218 /* idledays is configured */
219 if (idledays > 0 && (now < (time_t)(shpwd->sp_lstchg + idledays)))

Completed in 46 milliseconds