diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2006-10-19 12:29:59 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2006-10-19 12:29:59 +0000 |
commit | eea3a1534b30f13e057026aacde6b801d9f7cb6c (patch) | |
tree | 2b958ba10a6c94a972178cd71282927c2255f648 /usr.sbin/ripd/ripe.c | |
parent | 3b2b50dae02ff2fc0d5d6d20bda9e89a9ad59832 (diff) |
Correct function name in log_debug() messages
Diffstat (limited to 'usr.sbin/ripd/ripe.c')
-rw-r--r-- | usr.sbin/ripd/ripe.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ripd/ripe.c b/usr.sbin/ripd/ripe.c index 3f651bb5411..2da0d3311f3 100644 --- a/usr.sbin/ripd/ripe.c +++ b/usr.sbin/ripd/ripe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ripe.c,v 1.1 2006/10/18 16:11:58 norby Exp $ */ +/* $OpenBSD: ripe.c,v 1.2 2006/10/19 12:29:58 mcbride Exp $ */ /* * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it> @@ -181,7 +181,8 @@ ripe(struct ripd_conf *xconf, int pipe_parent2ripe[2], int pipe_ripe2rde[2], LIST_FOREACH(iface, &xconf->iface_list, entry) { if_init(xconf, iface); if (if_fsm(iface, IF_EVT_UP)) - log_debug("error starting interface: %s", iface->name); + log_debug("ripe: error starting interface: %s", + iface->name); } evtimer_set(&oeconf->report_timer, report_timer, oeconf); |