Index: http_request.c
===================================================================
RCS file: /home/cvspublic/apache-1.3/src/main/http_request.c,v
retrieving revision 1.162
diff -u -r1.162 http_request.c
--- http_request.c      2001/03/09 10:10:27     1.162
+++ http_request.c      2001/06/29 11:01:52
@@ -261,6 +261,7 @@
              * Aha!  Found something.  If it was a directory, we will search
              * contents of that directory for a multi_match, so the PATH_INFO
              * argument starts with the component after that.
+             * And let's populate r->mtime so that at least something there
              */
 
             if (S_ISDIR(r->finfo.st_mode) && last_cp) {
@@ -269,6 +270,7 @@
             }
 
             r->path_info = ap_pstrdup(r->pool, cp);
+            r->mtime = r->finfo.st_mtime;
             *cp = '\0';
             return OK;
         }