Skip to content

Commit

Permalink
Make mimic show consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
hack3ric committed May 24, 2024
1 parent 056a4a1 commit c32a683
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/show.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ int subcmd_show(struct show_args* args) {
_("failed to get value from map '%s': %s"), "mimic_conns", strret);

printf(_(" %sstate:%s %s\n"), BOLD, RESET, gettext(conn_state_to_str(conn.state)));
printf(_(" %ssequence:%s seq=%08x, ack=%08x\n"), BOLD, RESET, conn.seq, conn.ack_seq);
printf(_(" %ssequence:%s seq %08x, ack %08x\n"), BOLD, RESET, conn.seq, conn.ack_seq);
printf("\n");
}
if (!iter.has_key) printf(_("%sConnection%s no active connection\n"), BOLD YELLOW, RESET);
printf("\n");
Expand Down

0 comments on commit c32a683

Please sign in to comment.