summaryrefslogtreecommitdiff
path: root/nest
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-03-12 20:49:08 +0000
committerMartin Mares <mj@ucw.cz>2000-03-12 20:49:08 +0000
commitb0a47440e33e7a270205130b01d59faadb6b6726 (patch)
tree6ad14f9ef7dd80155f8fc329dd6df38bef83974d /nest
parentcfd46ee4c5b0d3689f8f9d094a68bc4b732cd0af (diff)
Oops, got `<' and `>' markers in trace output reversed.
Diffstat (limited to 'nest')
-rw-r--r--nest/rt-table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index d7c66dc7..7d992aa7 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -108,14 +108,14 @@ static inline void
rte_trace_in(unsigned int flag, struct proto *p, rte *e, char *msg)
{
if (p->debug & flag)
- rte_trace(p, e, '<', msg);
+ rte_trace(p, e, '>', msg);
}
static inline void
rte_trace_out(unsigned int flag, struct proto *p, rte *e, char *msg)
{
if (p->debug & flag)
- rte_trace(p, e, '>', msg);
+ rte_trace(p, e, '<', msg);
}
static inline void