From e0174f583e48b65832190b9ce6987b19edd42526 Mon Sep 17 00:00:00 2001 From: Seth Hall Date: Tue, 7 Jun 2011 23:05:35 -0400 Subject: [PATCH] Changing empty fields to also use "-" for ascii logging. --- policy/frameworks/logging/plugins/ascii.bro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/policy/frameworks/logging/plugins/ascii.bro b/policy/frameworks/logging/plugins/ascii.bro index ad59e8dcf5..bf9fb84d01 100644 --- a/policy/frameworks/logging/plugins/ascii.bro +++ b/policy/frameworks/logging/plugins/ascii.bro @@ -10,7 +10,7 @@ export { ## If true, include a header line with column names. const include_header = T &redef; - # Prefix for the header line if included. + ## Prefix for the header line if included. const header_prefix = "# " &redef; ## Separator between fields. @@ -20,7 +20,7 @@ export { const set_separator = "," &redef; ## String to use for empty fields. - const empty_field = "" &redef; + const empty_field = "-" &redef; ## String to use for an unset &optional field. const unset_field = "-" &redef;