Oops, got <' and >' markers in trace output reversed.

This commit is contained in:
Martin Mares 2000-03-12 20:49:08 +00:00
parent cfd46ee4c5
commit b0a47440e3

View file

@ -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