diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-11-02 20:28:50 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-11-02 20:28:50 +0000 |
commit | 73e30d30e9303ec154a841cb0fc722fe96b77344 (patch) | |
tree | 1f5cf5ff94951dcc0e3b1c65f7478873ff52c8d8 /usr.sbin/ripd/log.h | |
parent | 650f5a556835c74a288fb331fe461b0abb0ca910 (diff) |
Another routing daemon that gets IMSG_CTL_LOG_VERBOSE to allow toggeling of
log_debug(). ok michele, henning, sthen
Diffstat (limited to 'usr.sbin/ripd/log.h')
-rw-r--r-- | usr.sbin/ripd/log.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ripd/log.h b/usr.sbin/ripd/log.h index f1be0c23b55..bc2eb87f447 100644 --- a/usr.sbin/ripd/log.h +++ b/usr.sbin/ripd/log.h @@ -1,4 +1,4 @@ -/* $OpenBSD: log.h,v 1.1 2006/10/18 16:11:58 norby Exp $ */ +/* $OpenBSD: log.h,v 1.2 2009/11/02 20:28:49 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -22,6 +22,7 @@ #include <stdarg.h> void log_init(int); +void log_verbose(int); void vlog(int, const char *, va_list); void log_warn(const char *, ...); void log_warnx(const char *, ...); |