Re: Apache 1.3.28 SEGFAULTS and doesn't produce a core file

2003-11-29 Thread Blair Zajac
ld_init_modules(pchild, server_conf); /* done with the initialization critical section */ There's a similar call to prctl(PR_SET_DUMPABLE, 1) in the http 2.0 tree. Best, Blair -- Blair Zajac <[EMAIL PROTECTED]> Plots of your system's performance - http://www.orcaware.com/orca/

RE: server/exports.c includes now missing apu_compat.h

2003-09-05 Thread Blair Zajac
> Subject: RE: server/exports.c includes now missing apu_compat.h > Date: Fri, 5 Sep 2003 19:38:17 +0200 > From: "Sander Striker" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > > > From: Blair Zajac [mailto:[EMAIL PROTECTED] > > Sent: Friday, Sept

server/exports.c includes now missing apu_compat.h

2003-09-05 Thread Blair Zajac
If I manually delete 'include "apu_compat.h"' from exports.c it compiles just fine. Should httpd 2.1 compile and link against APR 1.0 branch or CVS HEAD now, as include/apr_compat.h, and include/apu_compat.h were removed from HEAD. Best, Blair -- Blair Zajac <[EMAIL PR

ssl_engine_init.c compile warning

2003-03-05 Thread Blair Zajac
de -I/usr/include/openssl -I/e xport/home1/blair/Code/Apache/2.0/h/modules/dav/main -prefer-pic -c ssl_engine_i nit.c && touch ssl_engine_init.slo ssl_engine_init.c: In function `ssl_init_ctx_callbacks': ssl_engine_init.c:512: warning: assignment from incompatible pointer type Best, Blai

server/config.c typo, missing )

2003-01-14 Thread Blair Zajac
} else { Otherwise, this compile error results: config.c: In function `ap_server_root_relative': config.c:1285: parse error before '{' token Best, Blair -- Blair Zajac <[EMAIL PROTECTED]> Plots of your system's performance - http://www.orcaware.com/orca/

SSL core dump with httpd-2.0 HEAD

2002-12-22 Thread Blair Zajac
ut the page being requested is the sites home page. Best, Blair -- Blair Zajac <[EMAIL PROTECTED]> Plots of your system's performance - http://www.orcaware.com/orca/

Re: Runaway SSL httpd server processes

2002-04-07 Thread Blair Zajac
} > +} > +else if ((rc == 0) && (errno != EINTR)) { > +/* something other than SSL_ERROR_WANT_READ */ > +return APR_EOF; > } > else if ((rc == -1) && (ctx->inbio.rc == APR_SUCCESS)) { > /* Doug, Thanks. Th