summaryrefslogtreecommitdiff
path: root/usr.sbin/relayd
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2007-10-22 08:52:20 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2007-10-22 08:52:20 +0000
commitada72f4859e9176f6786c4158ce43a359a07d904 (patch)
tree70c0d4c41b5d4f550cd3e63dd9c940452123bfaa /usr.sbin/relayd
parente4ceb87ea2f047766d60cb223b6a095345cedc5b (diff)
do not check the file secrecy of hoststated.conf, there is no need to
enforce the file ownership and permissions to root:wheel 0400 because we have nothing to hide. ok pyr@
Diffstat (limited to 'usr.sbin/relayd')
-rw-r--r--usr.sbin/relayd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y
index 347bb7ea39e..da3d5b81b68 100644
--- a/usr.sbin/relayd/parse.y
+++ b/usr.sbin/relayd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.72 2007/10/19 17:33:35 pyr Exp $ */
+/* $OpenBSD: parse.y,v 1.73 2007/10/22 08:52:19 reyk Exp $ */
/*
* Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
@@ -1614,7 +1614,7 @@ parse_config(const char *filename, int opts)
conf->opts = opts;
conf->confpath = filename;
- if ((file = pushfile(filename, 1)) == NULL) {
+ if ((file = pushfile(filename, 0)) == NULL) {
free(conf);
return (NULL);
}