From cd145f82a3213fc3e040b8799decb722ec7f22b7 Mon Sep 17 00:00:00 2001 From: vkalintiris Date: Mon, 26 Feb 2024 13:35:54 +0200 Subject: [PATCH] Fix typo (#17059) --- src/libnetdata/log/log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libnetdata/log/log.c b/src/libnetdata/log/log.c index e2a859ef9cc048..bfba93ddb2ae98 100644 --- a/src/libnetdata/log/log.c +++ b/src/libnetdata/log/log.c @@ -14,7 +14,7 @@ #include #endif -#if !defined(ENABLE_SERNTRY) && defined(HAVE_BACKTRACE) +#if !defined(ENABLE_SENTRY) && defined(HAVE_BACKTRACE) #include #endif @@ -2334,7 +2334,7 @@ void netdata_logger_fatal( const char *file, const char *function, const unsigne char action_result[60+1]; snprintfz(action_result, 60, "%s:%s", program_name, tag_to_send); -#if !defined(ENABLE_SERNTRY) && defined(HAVE_BACKTRACE) +#if !defined(ENABLE_SENTRY) && defined(HAVE_BACKTRACE) int fd = nd_log.sources[NDLS_DAEMON].fd; if(fd == -1) fd = STDERR_FILENO;