1. 30 Apr, 2002 4 commits
  2. 29 Apr, 2002 4 commits
  3. 28 Apr, 2002 4 commits
  4. 26 Apr, 2002 2 commits
  5. 25 Apr, 2002 5 commits
  6. 24 Apr, 2002 4 commits
  7. 23 Apr, 2002 3 commits
  8. 22 Apr, 2002 3 commits
  9. 21 Apr, 2002 1 commit
  10. 19 Apr, 2002 4 commits
  11. 18 Apr, 2002 3 commits
  12. 17 Apr, 2002 3 commits
    • Bill Stoddard's avatar
      Fix seg fault when garbage collecting an expired entry. remove_entity · a43730cd
      Bill Stoddard authored
      should just remove the object from the cache and set the cleanup flag
      in the object. decrement_refcount will clean the object up when the refcount
      goes to zero.
      
      Defect reported by Jean-Jacques Clar at Novell.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94683 13f79535-47bb-0310-9956-ffa450edef68
      a43730cd
    • William A. Rowe Jr's avatar
      · 91c1380c
      William A. Rowe Jr authored
           Introduced -E startup_logfile_name option to httpd to allow admins
           to begin logging errors immediately.  This provides Win32 users
           an alternative to sending startup errors to the event viewer, and
           allows other daemon tool authors an alternative to logging to stderr.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94681 13f79535-47bb-0310-9956-ffa450edef68
      91c1380c
    • Justin Erenkrantz's avatar
      Fix subreqs with non-defined Content-Types being served improperly. · 15e95dc9
      Justin Erenkrantz authored
      If we do not know a C-T for a subreq, we *must* propogate that
      non-knowledge upwards to the main request.
      
      Previously, if you used a DirectoryIndex with a file without a C-T (say
      .shtml without AddType), the r->content_type will be kept as
      httpd/unix-directory when we promoted the subreq in mod_dir.  Since there
      would be no handler on this file, ap_invoke_handler (config.c:355) would
      set the handler to be httpd/unix-directory (which was the old C-T of the
      dir).  This would then trigger the handler to become httpd/unix-directory.
      mod_autoindex would then try to serve the request.  But, the filename
      was propogated upwards by mod_dir's DirectoryIndex via
      internal_fast_redirect - it would then return a 403 trying to generate a
      mod_autoindex page for a file.
      
      Now, we will use ap_default_type() which is correct.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94676 13f79535-47bb-0310-9956-ffa450edef68
      15e95dc9