diff options
author | Renato Westphal <renato@cvs.openbsd.org> | 2016-05-23 18:55:22 +0000 |
---|---|---|
committer | Renato Westphal <renato@cvs.openbsd.org> | 2016-05-23 18:55:22 +0000 |
commit | 2a70268000d85df755837c9e48ee7423c839ee75 (patch) | |
tree | 67683dade7ac2736ce4822eb97661b0ad31c0095 /usr.sbin/ldpd/log.h | |
parent | ebae18186cf17f2f810c98c06ed0ea36692fc552 (diff) |
Assorted fixes and small cleanup.
Nothing really interesting here.
Diffstat (limited to 'usr.sbin/ldpd/log.h')
-rw-r--r-- | usr.sbin/ldpd/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ldpd/log.h b/usr.sbin/ldpd/log.h index 84a378f22e6..043cc2ffc2f 100644 --- a/usr.sbin/ldpd/log.h +++ b/usr.sbin/ldpd/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.8 2016/05/23 18:33:56 renato Exp $ */ +/* $OpenBSD: log.h,v 1.9 2016/05/23 18:55:21 renato Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -33,9 +33,9 @@ void fatal(const char *) __dead; void fatalx(const char *) __dead; const char *socket_name(int); const char *pw_type_name(uint16_t); -const char *log_map(struct map *); +const char *log_map(const struct map *); struct fec; -const char *log_fec(struct fec *); +const char *log_fec(const struct fec *); void log_rtmsg(unsigned char); struct hello_source; char *log_hello_src(const struct hello_source *); |