diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-07-25 18:27:59 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-07-25 18:27:59 +0000 |
commit | 4267c56b2589164ab8307a68ad9814b8869bcbd4 (patch) | |
tree | 681a4162e99c3098417fa8ee6da31c169f8f377a /usr.sbin/ntpd/config.c | |
parent | bf564228ed9fc9b1e79000bf20200d2152a8cb91 (diff) |
remove unused function
Diffstat (limited to 'usr.sbin/ntpd/config.c')
-rw-r--r-- | usr.sbin/ntpd/config.c | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/usr.sbin/ntpd/config.c b/usr.sbin/ntpd/config.c index db3a37443c2..c78199c5ab1 100644 --- a/usr.sbin/ntpd/config.c +++ b/usr.sbin/ntpd/config.c @@ -1,4 +1,4 @@ -/* $OpenBSD: config.c,v 1.7 2004/07/08 01:22:57 henning Exp $ */ +/* $OpenBSD: config.c,v 1.8 2004/07/25 18:27:58 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -31,29 +31,6 @@ struct ntp_addr *host_v4(const char *); struct ntp_addr *host_v6(const char *); struct ntp_addr *host_dns(const char *); -int -check_file_secrecy(int fd, const char *fname) -{ - struct stat st; - - if (fstat(fd, &st)) { - log_warn("cannot stat %s", fname); - return (-1); - } - - if (st.st_uid != 0 && st.st_uid != getuid()) { - 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); - return (-1); - } - - return (0); -} - struct ntp_addr * host(const char *s) { |