summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2014-04-21 15:46:03 +0000
committersthen <sthen@openbsd.org>2014-04-21 15:46:03 +0000
commit665038385e3e90ce33f953360d4f4da61123b9ec (patch)
tree6b9c6f3a7d6bbdce7fc770ce95a15dce548d3aff
parentMore KNF. (diff)
downloadwireguard-openbsd-665038385e3e90ce33f953360d4f4da61123b9ec.tar.xz
wireguard-openbsd-665038385e3e90ce33f953360d4f4da61123b9ec.zip
check perms on .ssh/id_ed25519; Fritjof Bornebusch
-rw-r--r--libexec/security/security4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/security/security b/libexec/security/security
index 47a979ad2f6..a7ab2df611f 100644
--- a/libexec/security/security
+++ b/libexec/security/security
@@ -1,6 +1,6 @@
#!/usr/bin/perl -T
-# $OpenBSD: security,v 1.25 2014/04/20 22:15:49 ajacoutot Exp $
+# $OpenBSD: security,v 1.26 2014/04/21 15:46:03 sthen Exp $
#
# Copyright (c) 2011, 2012 Ingo Schwarze <schwarze@openbsd.org>
# Copyright (c) 2011 Andrew Fresh <andrew@afresh1.com>
@@ -383,7 +383,7 @@ sub check_dot_readable {
foreach my $f (qw(
.netrc .rhosts .gnupg/secring.gpg .gnupg/random_seed
.pgp/secring.pgp .shosts .ssh/identity .ssh/id_dsa .ssh/id_ecdsa
- .ssh/id_rsa
+ .ssh/id_rsa .ssh/id_ed25519
)) {
next unless -e "$home/$f";
my ($mode, $fuid) = (stat(_))[2,4];