Yep, that did it. Typo ouside of the Win build (promise to
throw a GB drive in my old 386 and get linux or free bsd up
within a few weeks :-)
> -----Original Message-----
> From: Rodent of Unusual Size [mailto:Ken.Coar@Golux.Com]
> Sent: Friday, June 02, 2000 11:03 AM
> To: new-httpd@apache.org
> Subject: Re: cvs commit: apache-1.3/src/modules/proxy mod_proxy.h
> proxy_util.c
>
>
> wrowe@locus.apache.org wrote:
> >
> > Log:
> > PR: 1462, 2216, 3645
> > Submitted by: David Whitmarsh <david.whitmarsh@dial.pipex.com>
> > Reviewed by: William Rowe
>
> This breaks the build of mod_proxy on Linux. I'm not entirely
> sure what's going on here; does the following fix this and have
> the desired effect?
>
> Index: proxy_util.c
> ===================================================================
> RCS file: /home/cvs/apache-1.3/src/modules/proxy/proxy_util.c,v
> retrieving revision 1.89
> diff -u -r1.89 proxy_util.c
> --- proxy_util.c 2000/06/02 14:49:59 1.89
> +++ proxy_util.c 2000/06/02 16:02:52
> @@ -1324,8 +1324,8 @@
>
> #else
>
> - static APACHE_TLS per_thread_data sptd;
> - return *sptd;
> + static APACHE_TLS struct per_thread_data sptd;
> + return &sptd;
>
> #endif
> }
>
> --
> #ken P-)}
>
> Ken Coar <http://Golux.Com/coar/>
> Apache Software Foundation <http://www.apache.org/>
> "Apache Server for Dummies" <http://Apache-Server.Com/>
> "Apache Server Unleashed" <http://ApacheUnleashed.Com/>
>
|