diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-22 03:18:05 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-22 03:18:05 +0000 |
commit | ecfdbedbc0e3bb9a610b6da08829f45aa3233d10 (patch) | |
tree | cae33a5a666e5400d1f7a2fb6bd17966ed411aef /usr.sbin/bgpd/bgpd.h | |
parent | e41f28818352fca378f42f262ae9b466e4a970eb (diff) |
s/log_err/log_warn/
it is like warn(3), nor err(3). so use a less confusing name.
Diffstat (limited to 'usr.sbin/bgpd/bgpd.h')
-rw-r--r-- | usr.sbin/bgpd/bgpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/bgpd.h b/usr.sbin/bgpd/bgpd.h index cd361114248..f3d9db54318 100644 --- a/usr.sbin/bgpd/bgpd.h +++ b/usr.sbin/bgpd/bgpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.h,v 1.74 2004/01/22 03:07:51 henning Exp $ */ +/* $OpenBSD: bgpd.h,v 1.75 2004/01/22 03:18:03 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -284,7 +284,7 @@ int msgbuf_unbounded(struct msgbuf *msgbuf); void log_init(int); void logit(int, const char *, ...); void vlog(int, const char *, va_list); -void log_err(const char *, ...); +void log_warn(const char *, ...); void fatal(const char *); void fatalx(const char *); void fatal_ensure(const char *, int, const char *); |