diff options
author | 2019-07-23 23:06:57 +0000 | |
---|---|---|
committer | 2019-07-23 23:06:57 +0000 | |
commit | 96e92e7eb4b5a379f96846a1aafc9f10f4d218b2 (patch) | |
tree | 78aa299998f7653289d19c3c27741015a0931da0 | |
parent | Grab the vnode lock earlier in vn_read() since it could end up sleeping, (diff) | |
download | wireguard-openbsd-96e92e7eb4b5a379f96846a1aafc9f10f4d218b2.tar.xz wireguard-openbsd-96e92e7eb4b5a379f96846a1aafc9f10f4d218b2.zip |
Fix typo in CASignatureAlgorithms wherein what should be a comma is a dot.
Patch from hnj2 via github pr#141.
-rw-r--r-- | usr.bin/ssh/sshd_config.5 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshd_config.5 b/usr.bin/ssh/sshd_config.5 index 27a1afa45ba..d559add5c92 100644 --- a/usr.bin/ssh/sshd_config.5 +++ b/usr.bin/ssh/sshd_config.5 @@ -33,8 +33,8 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: sshd_config.5,v 1.286 2019/06/12 05:53:21 jmc Exp $ -.Dd $Mdocdate: June 12 2019 $ +.\" $OpenBSD: sshd_config.5,v 1.287 2019/07/23 23:06:57 dtucker Exp $ +.Dd $Mdocdate: July 23 2019 $ .Dt SSHD_CONFIG 5 .Os .Sh NAME @@ -386,7 +386,7 @@ Specifies which algorithms are allowed for signing of certificates by certificate authorities (CAs). The default is: .Bd -literal -offset indent -ecdsa-sha2-nistp256.ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, +ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521, ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa .Ed .Pp |