aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pacredir.c6
1 files changed, 5 insertions, 1 deletions
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 */