Re: Apache logging in prev?

2009-04-16 Thread Bob Ionescu
2009/4/15 Michele Waldman mmwald...@nyc.rr.com: ./server/util_script.c apr_table_addn(e, REMOTE_USER, r-user); apr_table_addn(e, REDIRECT_REMOTE_USER, back-user); I could this. Is this the right place? That's for ENVs, but not the place where a module reads and sets

Apache logging in prev?

2009-04-15 Thread Michele Waldman
In auth_mod_digest, it looks for previous authentication: while (mainreq-prev != NULL) { mainreq = mainreq-prev; } I'm trying to prevent this in certain cases to allow a new login. If I stop this statement, it uses the new creditials to validate, but this user is not

RE: Apache logging in prev?

2009-04-15 Thread Michele Waldman
, 2009 3:13 PM To: modules-dev@httpd.apache.org Subject: Apache logging in prev? In auth_mod_digest, it looks for previous authentication: while (mainreq-prev != NULL) { mainreq = mainreq-prev; } I'm trying to prevent this in certain cases to allow a new login