You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by na...@apache.org on 2001/01/13 02:08:27 UTC

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core RequestImpl.java

nacho       01/01/12 17:08:27

  Modified:    src/share/org/apache/tomcat/core Tag: tomcat_32
                        RequestImpl.java
  Log:
  Bug Report #757
  User Principal incorrectly Maintained
  Submitted by  David Winterfeldt ( dwinterfeldt@forbes.net <ma...@forbes.net> )
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.52.2.5  +1 -1      jakarta-tomcat/src/share/org/apache/tomcat/core/Attic/RequestImpl.java
  
  Index: RequestImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/core/Attic/RequestImpl.java,v
  retrieving revision 1.52.2.4
  retrieving revision 1.52.2.5
  diff -u -r1.52.2.4 -r1.52.2.5
  --- RequestImpl.java	2000/11/21 02:39:06	1.52.2.4
  +++ RequestImpl.java	2001/01/13 01:08:27	1.52.2.5
  @@ -726,7 +726,6 @@
           pathInfo=null;
           pathTranslatedIsSet=false;
           sessionIdSource = null;
  -
           // XXX a request need to override those if it cares
           // about security
           remoteAddr="127.0.0.1";
  @@ -741,6 +740,7 @@
           notAuthenticated=true;
   	userRoles=null;
   	reqRoles=null;
  +        principal=null;
       }
   
       // -------------------- End utils