Skip to content
Snippets Groups Projects
Commit b3de92bd authored by Isaac Huang's avatar Isaac Huang
Browse files

- corrected order of items in the 1st line of output of routerstat.

parent afe3486d
No related branches found
No related tags found
No related merge requests found
......@@ -130,11 +130,11 @@ do_stat (int fd)
if (last == 0.0) {
printf ("M %lu(%lu) E %lu S %lu/%llu R %lu/%llu F %lu/%llu D %lu/%llu\n",
new_counter.msgs_alloc, new_counter.msgs_max,
new_counter.errors,
new_counter.send_count, new_counter.send_length,
new_counter.recv_count, new_counter.recv_length,
new_counter.route_count, new_counter.route_length,
new_counter.drop_count, new_counter.drop_length);
new_counter.errors,
new_counter.send_length, new_counter.send_count,
new_counter.recv_length, new_counter.recv_count,
new_counter.route_length, new_counter.route_count,
new_counter.drop_length, new_counter.drop_count);
} else {
t = now - last;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment