From: Jason Ish Date: Thu, 26 May 2016 17:44:19 +0000 (-0600) Subject: tls-json-log: register module as tls-json-log, not dns-json-log X-Git-Tag: suricata-3.1RC1~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b23d74ac883293a65a78477becc070aa2c1baf0e;p=thirdparty%2Fsuricata.git tls-json-log: register module as tls-json-log, not dns-json-log Fixes issue: https://redmine.openinfosecfoundation.org/issues/1792 where dns-json-log would not log any data. --- diff --git a/src/output-json-tls.c b/src/output-json-tls.c index adb0a4e1f6..a7512a097c 100644 --- a/src/output-json-tls.c +++ b/src/output-json-tls.c @@ -318,7 +318,7 @@ void TmModuleJsonTlsLogRegister (void) tmm_modules[TMM_JSONTLSLOG].flags = TM_FLAG_LOGAPI_TM; /* register as separate module */ - OutputRegisterTxModuleWithProgress("JsonTlsLog", "dns-json-log", + OutputRegisterTxModuleWithProgress("JsonTlsLog", "tls-json-log", OutputTlsLogInit, ALPROTO_TLS, JsonTlsLogger, TLS_HANDSHAKE_DONE, TLS_HANDSHAKE_DONE);