summaryrefslogtreecommitdiff
path: root/usr.sbin/ospf6d
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2014-01-22 00:21:18 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2014-01-22 00:21:18 +0000
commit446a42e5f7ee4fa1cf899b4250aa68b5e39ce002 (patch)
treef1d1d7294c34aa1208f8253af417724454c3050a /usr.sbin/ospf6d
parent17a9845a120b50421e5f393c539c2623e9e5818e (diff)
relax the cfg file secrecy check slightly to allow group readability
default permissions and mtree NOT changed. prodded by benno, ok phessler benno jmatthew theo pelikan florian
Diffstat (limited to 'usr.sbin/ospf6d')
-rw-r--r--usr.sbin/ospf6d/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ospf6d/parse.y b/usr.sbin/ospf6d/parse.y
index a96f518755e..bad15fe7bed 100644
--- a/usr.sbin/ospf6d/parse.y
+++ b/usr.sbin/ospf6d/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.23 2013/11/25 12:59:13 benno Exp $ */
+/* $OpenBSD: parse.y,v 1.24 2014/01/22 00:21:16 henning Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@ -830,8 +830,8 @@ check_file_secrecy(int fd, const char *fname)
log_warnx("%s: owner not root or current user", fname);
return (-1);
}
- if (st.st_mode & (S_IRWXG | S_IRWXO)) {
- log_warnx("%s: group/world readable/writeable", fname);
+ if (st.st_mode & (S_IWGRP | S_IXGRP | S_IRWXO)) {
+ log_warnx("%s: group writable or world read/writable", fname);
return (-1);
}
return (0);