From ebbdf3095871ab73af14f343bac0bb3d0d0f8b81 Mon Sep 17 00:00:00 2001 From: Peter Haag Date: Sat, 4 Mar 2023 15:12:16 +0100 Subject: [PATCH] Fix #429. Correct header line for %dloc --- src/output/output_fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/output_fmt.c b/src/output/output_fmt.c index cfa15e71..d40e3a9a 100644 --- a/src/output/output_fmt.c +++ b/src/output/output_fmt.c @@ -418,7 +418,7 @@ static struct format_token_list_s { {"%sc", 0, "SC", String_SrcCountry}, // src IP 2 letter country code {"%dc", 0, "DC", String_DstCountry}, // dst IP 2 letter country code {"%sloc", 0, "Src IP location info", String_SrcLocation}, // src IP geo location info - {"%dloc", 0, "Src IP location info", String_DstLocation}, // src IP geo location info + {"%dloc", 0, "Dst IP location info", String_DstLocation}, // dst IP geo location info {"%n", 0, "", String_NewLine}, // \n {"%ipl", 0, "", String_inPayload}, // in payload {"%opl", 0, "", String_outPayload}, // out payload