* Function to set the r->mtime field to the specified value if it's later * than what's already there. */
| 2555 | * than what's already there. |
| 2556 | */ |
| 2557 | AP_DECLARE(void) ap_update_mtime(request_rec *r, apr_time_t dependency_mtime) |
| 2558 | { |
| 2559 | if (r->mtime < dependency_mtime) { |
| 2560 | r->mtime = dependency_mtime; |
| 2561 | } |
| 2562 | } |
| 2563 | |
| 2564 | /* |
| 2565 | * Is it the initial main request, which we only get *once* per HTTP request? |
no outgoing calls