summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/lib/replace.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/lib/replace.c b/source4/lib/replace.c
index cde9ce7a1b..d0de601079 100644
--- a/source4/lib/replace.c
+++ b/source4/lib/replace.c
@@ -437,6 +437,7 @@ char *rep_inet_ntoa(struct in_addr ip)
{
struct tm tm2, tm3;
time_t t;
+ static int zone = -1;
tm2 = *tm;
@@ -445,7 +446,10 @@ char *rep_inet_ntoa(struct in_addr ip)
tm2 = *tm;
tm2.tm_isdst = tm3.tm_isdst;
t = mktime(&tm2);
- t -= TimeDiff();
+ if (zone == -1) {
+ zone = get_time_zone();
+ }
+ t -= zone;
return t;
}