From 7ccfa177de38c54dee2bcf07d92e79f927dfcb8b Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 27 Jul 2020 19:28:22 +0200 Subject: [PATCH] eve/tls: minor cleanups --- src/output-json-tls.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/output-json-tls.c b/src/output-json-tls.c index 785128cac3..dc589d84fe 100644 --- a/src/output-json-tls.c +++ b/src/output-json-tls.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2007-2012 Open Information Security Foundation +/* Copyright (C) 2007-2020 Open Information Security Foundation * * You can copy, redistribute or modify this Program under the terms of * the GNU General Public License version 2 as published by the Free @@ -191,7 +191,7 @@ static void JsonTlsLogNotAfter(JsonBuilder *js, SSLState *ssl_state) tv.tv_sec = ssl_state->server_connp.cert0_not_after; tv.tv_usec = 0; CreateUtcIsoTimeString(&tv, timebuf, sizeof(timebuf)); - jb_set_string(js, "notafter", timebuf); + jb_set_string(js, "notafter", timebuf); } } @@ -652,4 +652,4 @@ void JsonTlsLogRegister (void) "JsonTlsLog", "eve-log.tls", OutputTlsLogInitSub, ALPROTO_TLS, JsonTlsLogger, TLS_HANDSHAKE_DONE, TLS_HANDSHAKE_DONE, JsonTlsLogThreadInit, JsonTlsLogThreadDeinit, NULL); -} +} \ No newline at end of file