From: Eric Leblond Date: Mon, 17 Jan 2022 08:31:06 +0000 (+0100) Subject: output/alert: don't call basic logging twice X-Git-Tag: suricata-6.0.6~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7605%2Fhead;p=thirdparty%2Fsuricata.git output/alert: don't call basic logging twice Issue: 4106 (cherry picked from commit 264eddb81f952c23b5dffc3d31eef87dceb8158f) --- diff --git a/src/output-json-alert.c b/src/output-json-alert.c index c0db7ef084..76b296de80 100644 --- a/src/output-json-alert.c +++ b/src/output-json-alert.c @@ -135,7 +135,6 @@ static void AlertJsonTls(const Flow *f, JsonBuilder *js) if (ssl_state) { jb_open_object(js, "tls"); - JsonTlsLogJSONBasic(js, ssl_state); JsonTlsLogJSONExtended(js, ssl_state); jb_close(js);