From 12e13b815a4f4f2d5e603fa13d741fc4840d359d Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 20 Aug 2024 21:12:07 +0200 Subject: [PATCH] fix(build): wrong var name fix --- suricata-notify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suricata-notify.c b/suricata-notify.c index bfd3072..3bfaa4d 100644 --- a/suricata-notify.c +++ b/suricata-notify.c @@ -174,7 +174,7 @@ void process_alerts(const char *log_file) exit(EXIT_FAILURE); } - FILE *file = fopen(sanatized_log_file, "r"); + FILE *file = fopen(log_file, "r"); if (file == NULL) { perror("Error opening file");