diff options
author | Jeremy Allison <jra@samba.org> | 2005-11-06 01:55:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:19 -0500 |
commit | b745114423a482ea8cd1ea4f80ec3fc2a9caa971 (patch) | |
tree | e908755a878a5254002dd40e7048a43e78153c76 /source/lib | |
parent | 414303bc0272f207046b471a0364fa296b67c1f8 (diff) | |
download | samba-b745114423a482ea8cd1ea4f80ec3fc2a9caa971.tar.gz samba-b745114423a482ea8cd1ea4f80ec3fc2a9caa971.tar.xz samba-b745114423a482ea8cd1ea4f80ec3fc2a9caa971.zip |
r11530: Add the "time offset" parameter back in for people who
might use it.
Jeremy.
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/time.c b/source/lib/time.c index 2bc4d47143a..989589121b9 100644 --- a/source/lib/time.c +++ b/source/lib/time.c @@ -104,7 +104,7 @@ int get_time_zone(time_t t) if (!tm) { return 0; } - return tm_diff(&tm_utc,tm); + return tm_diff(&tm_utc,tm) + 60*extra_time_offset; } /******************************************************************* |