Skip to content

Commit

Permalink
fix(build): wrong var name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
con-cis committed Aug 20, 2024
1 parent dedae87 commit 12e13b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suricata-notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 12e13b8

Please sign in to comment.