Re: svn commit: r556931 - /httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c

2007-07-17 Thread Jim Jagielski
On Jul 17, 2007, at 10:31 AM, [EMAIL PROTECTED] wrote: +if (*(workers-s-route) strcmp(workers-s-route, route) == 0) { Is that right? I'm guessing the 1st check was to make sure that workers-s-route wasn't NULL (and therefore the strcmp didn't dump), but instead you're checking

Re: svn commit: r556931 - /httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c

2007-07-17 Thread jean-frederic clere
Jim Jagielski wrote: On Jul 17, 2007, at 10:31 AM, [EMAIL PROTECTED] wrote: +if (*(workers-s-route) strcmp(workers-s-route, route) == 0) { Is that right? I'm guessing the 1st check was to make sure that workers-s-route wasn't NULL (and therefore the strcmp didn't dump), but

Re: svn commit: r556931 - /httpd/httpd/trunk/modules/proxy/mod_proxy_balancer.c

2007-07-17 Thread Jim Jagielski
On Jul 17, 2007, at 12:48 PM, jean-frederic clere wrote: Jim Jagielski wrote: On Jul 17, 2007, at 10:31 AM, [EMAIL PROTECTED] wrote: +if (*(workers-s-route) strcmp(workers-s- route, route) == 0) { Is that right? I'm guessing the 1st check was to make sure that workers-s-route