summaryrefslogtreecommitdiffstats
path: root/source/web/statuspage.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/web/statuspage.c')
-rw-r--r--source/web/statuspage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/web/statuspage.c b/source/web/statuspage.c
index edc03183730..6447f95bac4 100644
--- a/source/web/statuspage.c
+++ b/source/web/statuspage.c
@@ -101,7 +101,7 @@ static char *mapPid2Machine (struct process_id pid)
static char *tstring(time_t t)
{
static pstring buf;
- pstrcpy(buf, asctime(LocalTime(&t)));
+ pstrcpy(buf, asctime(localtime(&t)));
all_string_sub(buf," "," ",sizeof(buf));
return buf;
}