]> git.pld-linux.org Git - packages/squid.git/blob - squid-crash-on-ENOSPC.patch
- release 2 (by relup.sh)
[packages/squid.git] / squid-crash-on-ENOSPC.patch
1 --- squid-2.5.STABLE1/src/logfile.c~    Wed Jun 26 11:57:24 2002
2 +++ squid-2.5.STABLE1/src/logfile.c     Fri Feb 28 13:33:57 2003
3 @@ -186,5 +186,7 @@
4         return;
5      if (!lf->flags.fatal)
6         return;
7 -    fatalf("logfileWrite: %s: %s\n", lf->path, xstrerror());
8 +#if HAVE_SYSLOG
9 +    syslog(LOG_ALERT, "logfileWrite: %s: %s", lf->path, xstrerror());
10 +#endif
11  }
This page took 0.153779 seconds and 3 git commands to generate.