Browse Source

remove unused function

OPENBSD_3_6
henning 20 years ago
parent
commit
42d85772a9
2 changed files with 2 additions and 26 deletions
  1. +1
    -24
      src/usr.sbin/ntpd/config.c
  2. +1
    -2
      src/usr.sbin/ntpd/ntpd.h

+ 1
- 24
src/usr.sbin/ntpd/config.c View File

@ -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> * 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_v6(const char *);
struct ntp_addr *host_dns(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 * struct ntp_addr *
host(const char *s) host(const char *s)
{ {


+ 1
- 2
src/usr.sbin/ntpd/ntpd.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: ntpd.h,v 1.28 2004/07/20 16:47:55 henning Exp $ */
/* $OpenBSD: ntpd.h,v 1.29 2004/07/25 18:27:58 henning Exp $ */
/* /*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@ -206,7 +206,6 @@ int parse_config(char *, struct ntpd_conf *);
int cmdline_symset(char *); int cmdline_symset(char *);
/* config.c */ /* config.c */
int check_file_secrecy(int, const char *);
struct ntp_addr *host(const char *); struct ntp_addr *host(const char *);
/* ntp_msg.c */ /* ntp_msg.c */


Loading…
Cancel
Save