Skip to content

Commit

Permalink
Fix #498 - event string in output_fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Jan 14, 2024
1 parent 389acc5 commit 4b961bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output/output_fmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1719,7 +1719,7 @@ static void String_pfrule(FILE *stream, master_record_t *r) {
static void String_nfc(FILE *stream, master_record_t *r) { fprintf(stream, "%10u", r->connID); } // End of String_nfc

static void String_evt(FILE *stream, master_record_t *r) {
if (r->fwXevent) {
if (r->event_flag == FW_EVENT) {
fprintf(stream, "%8s", fwEventString(r->event));
} else {
fprintf(stream, "%8s", natEventString(r->event, SHORTNAME));
Expand Down

0 comments on commit 4b961bd

Please sign in to comment.