summaryrefslogtreecommitdiff
path: root/source4/web/statuspage.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/web/statuspage.c')
-rw-r--r--source4/web/statuspage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/web/statuspage.c b/source4/web/statuspage.c
index 33bf63ae62..c83d0af021 100644
--- a/source4/web/statuspage.c
+++ b/source4/web/statuspage.c
@@ -96,7 +96,7 @@ static char *mapPid2Machine (pid_t 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;
}