diff options
Diffstat (limited to 'xen/time.c')
-rw-r--r-- | xen/time.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,5 +1,5 @@ /* - * Copyright (C) 2006 Samuel Thibault <samuel.thibault@ens-lyon.org> + * Copyright (C) 2006-2009 Free Software Foundation * * This program is free software ; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -116,11 +116,6 @@ readtodc(tp) unsigned64_t t = hyp_get_time(); u_int n = t / 1000000000; -#ifndef MACH_KERNEL - n += tz.tz_minuteswest * 60; - if (tz.tz_dsttime) - n -= 3600; -#endif /* MACH_KERNEL */ *tp = n; return(0); |