From eb6bc617f7002fc53f6a42a2cb4ec8035d6ca2c9 Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sat, 20 May 2023 05:23:23 +0000 Subject: [PATCH] Fix fatalf() undefined for environments without syslog (#1356) src/debug/debug.cc:1087 error: 'fatalf' was not declared in this scope --- src/debug/debug.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/debug/debug.cc b/src/debug/debug.cc index 0ea6430634..d58c64cf6d 100644 --- a/src/debug/debug.cc +++ b/src/debug/debug.cc @@ -11,6 +11,7 @@ #include "squid.h" #include "base/TextException.h" #include "debug/Stream.h" +#include "fatal.h" #include "fd.h" #include "ipc/Kids.h" #include "time/gadgets.h" -- 2.47.3