From d241e6feadc6678edafdfedd235d93987af2d778 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 901ca35040..d97de8dafd 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.2