diff options
Diffstat (limited to 'lib/HttpServ.cc')
-rw-r--r-- | lib/HttpServ.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc index 6e369fa..6dee7ad 100644 --- a/lib/HttpServ.cc +++ b/lib/HttpServ.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: HttpServ.cc,v 1.48 2007-06-02 11:29:30 pixel Exp $ */ +/* $Id: HttpServ.cc,v 1.49 2007-06-04 14:24:18 pixel Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -228,6 +228,8 @@ int ProcessRequest::Do() throw(GeneralException) { request.vars = Vars; request.headers = Heads; request.uri = Uri; + request.login = login; + request.password = password; d->Do(request, &response); a = response.BuildResponse(&s); } else { |