[squid-dev] Removal of xstrerror?

2015-05-12 Thread Alex Dowad
Hi, I'm just questioning whether removing xstrerror is really desirable in cases where it is called without any intervening library function call which could overwrite errno. Amos, are you sure that's what you want to do? Thanks, Alex Dowad ___ squid

Re: [squid-dev] [PATCH] Correct various problems with errno

2015-05-12 Thread Alex Dowad
audit of all uses of errno now, though -- perhaps after I clean my patches up well enough that they can be applied, you can go ahead and audit what remains? Thanks, Alex Dowad ___ squid-dev mailing list squid-dev@lists.squid-cache.org http://lists.squid

[squid-dev] [PATCH] Fix broken build with musl libc (caused by sys/signal.h)

2015-05-07 Thread Alex Dowad
When included, musl libc's sys/signal.h issues a compiler warning stating that signal.h should be used directly instead. If gcc is treating all warnings as errors, this breaks the build. glibc's sys/signal.h does not contain any definitions; all it does is include signal.h (indirectly). So

[squid-dev] [PATCH] Correct various problems with errno

2015-04-30 Thread Alex Dowad
Dear Squid devs, Please have a look at the attached patch. Your feedback will be appreciated. Thanks, Alex DowadFrom 95c5124510a2cd6f1473d2ec9a31776f2e442d8e Mon Sep 17 00:00:00 2001 From: Alex Dowad alexinbeij...@gmail.com Date: Tue, 28 Apr 2015 19:37:02 +0200 Subject: [PATCH] Fix incorrect use