From 39f4363447961e50cec3eb6baa6df8bb80371860 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Mon, 16 Jun 2014 12:24:50 +0200 Subject: print modification datprint modification date --- pacredir.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pacredir.c b/pacredir.c index cee1bdb..11153c9 100644 --- a/pacredir.c +++ b/pacredir.c @@ -309,6 +309,7 @@ static int ahc_echo(void * cls, struct MHD_Connection * connection, const char * struct request * request = NULL; long http_code = 0, last_modified = 0; double time_total = INFINITY; + char ctime[26]; /* we want the filename, not the path */ basename = uri; @@ -406,8 +407,11 @@ static int ahc_echo(void * cls, struct MHD_Connection * connection, const char * request = requests[i]; + ctime_r(&request->last_modified, ctime); + ctime[strlen(ctime) - 1] = 0; + if (request->http_code == MHD_HTTP_OK) - write_log(stdout, "Found: %s (%f sec)\n", request->url, request->time_total); + write_log(stdout, "Found: %s (%f sec, modified: %s)\n", request->url, request->time_total, ctime); if (request->http_code == MHD_HTTP_OK && /* for db files choose the most recent server */ -- cgit v1.2.3-54-g00ecf