From 34ff18839c97dbb77c76097b4484ebec398da192 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 4 May 2004 22:53:47 +0000 Subject: [PATCH] r476: i forgot the argument to get_time_zone() --- source/lib/replace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/replace.c b/source/lib/replace.c index d0de6010795..189c5bc04d4 100644 --- a/source/lib/replace.c +++ b/source/lib/replace.c @@ -447,7 +447,7 @@ char *rep_inet_ntoa(struct in_addr ip) tm2.tm_isdst = tm3.tm_isdst; t = mktime(&tm2); if (zone == -1) { - zone = get_time_zone(); + zone = get_time_zone(t); } t -= zone;