diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2005-03-26 13:39:51 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2005-03-26 13:39:51 +0000 |
commit | 8510b913fd2b63dd94bc3e6d604cd1daed6fe378 (patch) | |
tree | 197390650ba586e47a3640f71c843805222383d8 /usr.sbin/ospfd | |
parent | 2ba549f674da90f4c720149117dd29fd50d93351 (diff) |
Prototypes where moved to ospfd.h so no need to keep them here.
Diffstat (limited to 'usr.sbin/ospfd')
-rw-r--r-- | usr.sbin/ospfd/ospfd.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.sbin/ospfd/ospfd.c b/usr.sbin/ospfd/ospfd.c index c8967e66913..b6419fe7cb7 100644 --- a/usr.sbin/ospfd/ospfd.c +++ b/usr.sbin/ospfd/ospfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfd.c,v 1.13 2005/03/26 13:35:16 claudio Exp $ */ +/* $OpenBSD: ospfd.c,v 1.14 2005/03/26 13:39:50 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -52,8 +52,6 @@ int check_child(pid_t, const char *); void main_dispatch_ospfe(int, short, void *); void main_dispatch_rde(int, short, void *); -void main_imsg_compose_ospfe(int, pid_t, void *, u_int16_t); -void main_imsg_compose_rde(int, pid_t, void *, u_int16_t); int check_file_secrecy(int, const char *); @@ -420,7 +418,6 @@ main_imsg_compose_rde(int type, pid_t pid, void *data, u_int16_t datalen) imsg_compose(ibuf_rde, type, 0, pid, -1, data, datalen); } - int check_file_secrecy(int fd, const char *fname) { |