From b23d74ac883293a65a78477becc070aa2c1baf0e Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 26 May 2016 11:44:19 -0600 Subject: [PATCH] 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. --- src/output-json-tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);