mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Use the correct name of the login.conf(5) capability (`passwordperiod' ->
`passwordtime').
This commit is contained in:
parent
647c4178bd
commit
49ca483aa1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36173
@ -30,7 +30,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: local_passwd.c,v 1.18 1997/06/14 00:27:03 ache Exp $
|
* $Id: local_passwd.c,v 1.19 1998/03/07 21:42:07 ache Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
@ -123,8 +123,8 @@ getnewpasswd(pw, nis)
|
|||||||
/* minpasswordlen capablity */
|
/* minpasswordlen capablity */
|
||||||
min_length = (int)login_getcapnum(lc, "minpasswordlen",
|
min_length = (int)login_getcapnum(lc, "minpasswordlen",
|
||||||
min_length, min_length);
|
min_length, min_length);
|
||||||
/* passwordperiod capability */
|
/* passwordtime capability */
|
||||||
period = login_getcaptime(lc, "passwordperiod", 0, 0);
|
period = login_getcaptime(lc, "passwordtime", 0, 0);
|
||||||
if (period > (time_t)0) {
|
if (period > (time_t)0) {
|
||||||
pw->pw_change = time(NULL) + period;
|
pw->pw_change = time(NULL) + period;
|
||||||
}
|
}
|
||||||
@ -207,7 +207,7 @@ local_passwd(uname)
|
|||||||
* Get the new password. Reset passwd change time to zero by
|
* Get the new password. Reset passwd change time to zero by
|
||||||
* default. If the user has a valid login class (or the default
|
* default. If the user has a valid login class (or the default
|
||||||
* fallback exists), then the next password change date is set
|
* fallback exists), then the next password change date is set
|
||||||
* by getnewpasswd() according to the "passwordperiod" capability
|
* by getnewpasswd() according to the "passwordtime" capability
|
||||||
* if one has been specified.
|
* if one has been specified.
|
||||||
*/
|
*/
|
||||||
pw->pw_change = 0;
|
pw->pw_change = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user