From: Alex Rousskov Date: Thu, 6 Oct 2011 22:25:28 +0000 (-0600) Subject: Fixed a typo that broke builds with no HAVE_SHM. X-Git-Tag: BumpSslServerFirst.take01~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e3f96a43fb65047e25d02abdd84766beb2c011c;p=thirdparty%2Fsquid.git Fixed a typo that broke builds with no HAVE_SHM. --- diff --git a/src/ipc/mem/Segment.cc b/src/ipc/mem/Segment.cc index ca31f3ca0b..ef51693f60 100644 --- a/src/ipc/mem/Segment.cc +++ b/src/ipc/mem/Segment.cc @@ -267,7 +267,7 @@ Ipc::Mem::RegisteredRunner::run(const RunnerRegistry &r) #if HAVE_SHM if (IamMasterProcess()) #else - if (IamWorker()) + if (IamWorkerProcess()) #endif create(r);