diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-02-09 08:20:12 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-02-09 08:20:12 +0000 |
commit | 5831efa0a800884353121f5005c70adc7c27887d (patch) | |
tree | 9ca2cf3accb4e6067e42ce9427bcaf333a7e1b47 /usr.sbin | |
parent | 19bf4b5f28c79c2df300d8aff6b3e6e621bc0b54 (diff) |
Correct function name in warning to avoid confusion. After a discussion on
misc@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bgpd/kroute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/kroute.c b/usr.sbin/bgpd/kroute.c index 98ac3c76136..dcf7ab4e7dc 100644 --- a/usr.sbin/bgpd/kroute.c +++ b/usr.sbin/bgpd/kroute.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kroute.c,v 1.163 2009/01/01 15:32:35 claudio Exp $ */ +/* $OpenBSD: kroute.c,v 1.164 2009/02/09 08:20:11 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -2150,7 +2150,7 @@ retry: kroute->prefixlen); return (0); } else { - log_warnx("send_rtmsg: action %u, " + log_warnx("send_rt6msg: action %u, " "prefix %s/%u: %s", hdr.rtm_type, log_in6addr(&kroute->prefix), kroute->prefixlen, strerror(errno)); @@ -2158,7 +2158,7 @@ retry: } break; default: - log_warnx("send_rtmsg: action %u, prefix %s/%u: %s", + log_warnx("send_rt6msg: action %u, prefix %s/%u: %s", hdr.rtm_type, log_in6addr(&kroute->prefix), kroute->prefixlen, strerror(errno)); return (0); |