From 5cb74d572ea7ba3607c5af610a15f3bb7287a9a6 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Tue, 20 Jun 2023 14:56:29 +0200 Subject: [PATCH] Fix typos in comment Co-authored-by: Remi Gacogne --- pdns/recursordist/rec-main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/rec-main.cc b/pdns/recursordist/rec-main.cc index 5d5b7c7c9b..225c72d80a 100644 --- a/pdns/recursordist/rec-main.cc +++ b/pdns/recursordist/rec-main.cc @@ -814,9 +814,9 @@ static void daemonize(Logr::log_t log) int err = errno; SLOG(g_log << Logger::Critical << "Fork failed: " << stringerror(err) << endl, log->error(Logr::Critical, err, "Fork failed")); - exit(1); // NOLINT(concurrency-mt-unsafe + exit(1); // NOLINT(concurrency-mt-unsafe) } - exit(0); // NOLINT(concurrency-mt-unsafe + exit(0); // NOLINT(concurrency-mt-unsafe) } setsid(); -- 2.47.2