On Tue, 1 May 2001, GUMMALAM,MOHAN (HP-PaloAlto,ex1) wrote:

> Thanks Jeff for your suggestions:  I finally was able to nail down the
> problem -- but I still need to get it to work.  The LoadModule directive was
> failing because of a simple (and the most common of all) C problem.
>
> In dso.c in line 137, function apr_dso_sym, the statement was worded:
>     if (status = -1)
>         return APR_EINIT;
> whereas it should have been:
>     if (status == -1)
>         return APR_EINIT;
>
> Ofcourse, (status = -1) was always true, and although the shl_findsym was
> successful, apr_dso_sym always returned the APR_EINIT error.  Could we have
> this fix go into the source tree?  Or if I am allowed to make this change in
> the CVS tree, I could do it -- what should I do?

This was fixed last week.  I believe I fixed in on Friday.

Ryan

_______________________________________________________________________________
Ryan Bloom                              [EMAIL PROTECTED]
406 29th St.
San Francisco, CA 94131
-------------------------------------------------------------------------------

Reply via email to