diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-22 19:07:35 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-22 19:07:35 +0000 |
commit | 1957879869158db7f6b1660c4b962537bd81f6e5 (patch) | |
tree | 5de6304c22f130dd21c7b9bc91854472787009ba /usr.sbin/bgpd/session.h | |
parent | 6cdaf7fdfeecbb521f4cf141d85ac7f0de778639 (diff) |
log_peer_err -> log_peer_warn
log_peer_errx -> log_peer_warnx
Diffstat (limited to 'usr.sbin/bgpd/session.h')
-rw-r--r-- | usr.sbin/bgpd/session.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/session.h b/usr.sbin/bgpd/session.h index 540049ff287..3d245aa75f7 100644 --- a/usr.sbin/bgpd/session.h +++ b/usr.sbin/bgpd/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.20 2004/01/17 19:35:36 claudio Exp $ */ +/* $OpenBSD: session.h,v 1.21 2004/01/22 19:07:34 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -162,8 +162,8 @@ struct peer *getpeerbyip(in_addr_t); int imsg_compose_parent(int, pid_t, void *, u_int16_t); /* log.c */ -void log_peer_err(const struct peer *, const char *, ...); -void log_peer_errx(const struct peer *, const char *, ...); +void log_peer_warn(const struct peer *, const char *, ...); +void log_peer_warnx(const struct peer *, const char *, ...); void log_statechange(const struct peer *, enum session_state, enum session_events); void log_notification(const struct peer *, u_int8_t, u_int8_t, |