makedate: abort on negative timestamps (
issue2513)
catches weird clock settings
--- a/mercurial/util.py Wed Nov 24 19:31:43 2010 +0100
+++ b/mercurial/util.py Wed Nov 24 19:31:43 2010 +0100
@@ -1015,7 +1015,11 @@
tz = time.altzone
else:
tz = time.timezone
- return time.mktime(lt), tz
+ t = time.mktime(lt)
+ if t < 0:
+ hint = _("check your clock")
+ raise Abort(_("negative timestamp: %d") % t, hint=hint)
+ return t, tz
def datestr(date=None, format='%a %b %d %H:%M:%S %Y %1%2'):
"""represent a (unixtime, offset) tuple as a localized time.