From: wessels <> Date: Fri, 17 Oct 1997 11:27:56 +0000 (+0000) Subject: xbstrerror() not needed I think X-Git-Tag: SQUID_3_0_PRE1~4786 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d591088def411be81c6b04adcd9eff3a74232e6f;p=thirdparty%2Fsquid.git xbstrerror() not needed I think --- diff --git a/lib/util.c b/lib/util.c index 3398e84d17..83724d5a06 100644 --- a/lib/util.c +++ b/lib/util.c @@ -1,5 +1,5 @@ /* - * $Id: util.c,v 1.31 1997/10/15 22:06:44 kostas Exp $ + * $Id: util.c,v 1.32 1997/10/17 05:27:56 wessels Exp $ * * DEBUG: * AUTHOR: Harvest Derived @@ -444,6 +444,7 @@ xstrerror(void) return xstrerror_buf; } +#if NOT_NEEDED /* * xbstrerror with argument for late notification */ @@ -456,6 +457,7 @@ xbstrerror(int err) sprintf(xbstrerror_buf, "(%d) %s", err, strerror(err)); return xbstrerror_buf; } +#endif void Tolower(char *q)