From: Amos Jeffries Date: Sat, 20 May 2023 05:23:23 +0000 (+0000) Subject: Fix fatalf() undefined for environments without syslog (#1356) X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=fc0149afd7acb415abf1a3d39fd7b8f79ecf6196;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.cc b/src/debug.cc index ca263029e6..b5056c1b13 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -10,6 +10,7 @@ #include "squid.h" #include "Debug.h" +#include "fatal.h" #include "fd.h" #include "ipc/Kids.h" #include "SquidTime.h"