From: Amos Jeffries Date: Sat, 20 May 2023 05:23:23 +0000 (+0000) Subject: Fix fatalf() undefined for environments without syslog (#1356) X-Git-Tag: SQUID_7_0_1~440 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb6bc617f7002fc53f6a42a2cb4ec8035d6ca2c9;p=thirdparty%2Fsquid.git Fix fatalf() undefined for environments without syslog (#1356) src/debug/debug.cc:1087 error: 'fatalf' was not declared in this scope --- 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"