Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jun 2018 20:50:23 +0000 (UTC)
From:      Devin Teske <dteske@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r335735 - stable/11/stand/forth
Message-ID:  <201806272050.w5RKoNMi090248@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dteske
Date: Wed Jun 27 20:50:23 2018
New Revision: 335735
URL: https://svnweb.freebsd.org/changeset/base/335735

Log:
  MFC r335607: check-password.4th(8): Fix manual [in]accuracy
  
  SVN r280384 updated the maximum password length from 16 bytes to 255. The
  manual was not updated to reflect this.
  
  Sponsored by:	Smule, Inc.

Modified:
  stable/11/stand/forth/check-password.4th.8
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/stand/forth/check-password.4th.8
==============================================================================
--- stable/11/stand/forth/check-password.4th.8	Wed Jun 27 19:42:55 2018	(r335734)
+++ stable/11/stand/forth/check-password.4th.8	Wed Jun 27 20:50:23 2018	(r335735)
@@ -1,4 +1,4 @@
-.\" Copyright (c) 2011-2015 Devin Teske
+.\" Copyright (c) 2011-2018 Devin Teske
 .\" All rights reserved.
 .\"
 .\" Redistribution and use in source and binary forms, with or without
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 20, 2015
+.Dd June 24, 2018
 .Dt CHECK-PASSWORD.4TH 8
 .Os
 .Sh NAME
@@ -91,7 +91,7 @@ for additional information.
 The environment variables that effect its behavior are:
 .Bl -tag -width bootlock_password -offset indent
 .It Va bootlock_password
-Sets the bootlock password (up to 16 characters long) that is required by
+Sets the bootlock password (up to 255 characters long) that is required by
 .Ic check-password
 to be entered before the system is allowed to boot.
 .It Va geom_eli_passphrase_prompt
@@ -100,7 +100,7 @@ kernel for later mounting of
 .Xr geli 8
 encrypted root device(s).
 .It Va password
-Sets the password (up to 16 characters long) that is required by
+Sets the password (up to 255 characters long) that is required by
 .Ic check-password
 before the user is allowed to visit the boot menu.
 .El



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806272050.w5RKoNMi090248>