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-7.0.0-beta1~1058 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=264eddb81f952c23b5dffc3d31eef87dceb8158f;p=thirdparty%2Fsuricata.git output/alert: don't call basic logging twice Issue: 4106 --- diff --git a/src/output-json-alert.c b/src/output-json-alert.c index d2373ed0e4..bd4957f1e4 100644 --- a/src/output-json-alert.c +++ b/src/output-json-alert.c @@ -134,7 +134,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);