diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-12 21:49:08 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-12 21:49:08 +0100 |
commit | b0a47440e33e7a270205130b01d59faadb6b6726 (patch) | |
tree | 6ad14f9ef7dd80155f8fc329dd6df38bef83974d | |
parent | cfd46ee4c5b0d3689f8f9d094a68bc4b732cd0af (diff) | |
download | bird-b0a47440e33e7a270205130b01d59faadb6b6726.tar bird-b0a47440e33e7a270205130b01d59faadb6b6726.zip |
Oops, got `<' and `>' markers in trace output reversed.
-rw-r--r-- | nest/rt-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index d7c66dc..7d992aa 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 |