diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2014-04-21 15:46:04 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2014-04-21 15:46:04 +0000 |
commit | 6f7918afbcf9768c6a2dce4507191ecb5caccd89 (patch) | |
tree | a5cdf72aefc2da0a0d5dcc2c26e525005f0e39cf /libexec | |
parent | 871cd900131d88dea45a6f909bad7215af097363 (diff) |
check perms on .ssh/id_ed25519; Fritjof Bornebusch
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/security/security | 4 |
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]; |