diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-03 05:00:59 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-03 05:00:59 +0800 |
commit | 2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f (patch) | |
tree | c02002308eb47968fb985416eeeb3099d85281f3 /calendar/timeutil.c | |
parent | f6963100c2509175cbd22b1556273ddbc0dd4e7d (diff) | |
download | gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.tar gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.tar.gz gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.tar.bz2 gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.tar.lz gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.tar.xz gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.tar.zst gsoc2013-evolution-2ff4c25c6c79ea6bcb58a155d1e60e6a0eec9e6f.zip |
Various time fixes; lib fixes; cache fixes -mig
svn path=/trunk/; revision=96
Diffstat (limited to 'calendar/timeutil.c')
-rw-r--r-- | calendar/timeutil.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/calendar/timeutil.c b/calendar/timeutil.c index 7957751049..7d39ea9814 100644 --- a/calendar/timeutil.c +++ b/calendar/timeutil.c @@ -15,9 +15,10 @@ time_t time_from_isodate (char *str) { struct tm my_tm; + time_t t; - my_tm.tm_year = digit_at (str, 0) * 1000 + digit_at (str, 1) * 100 + - digit_at (str, 2) * 10 + digit_at (str, 3); + my_tm.tm_year = (digit_at (str, 0) * 1000 + digit_at (str, 1) * 100 + + digit_at (str, 2) * 10 + digit_at (str, 3)) - 1900; my_tm.tm_mon = digit_at (str, 4) * 10 + digit_at (str, 5); my_tm.tm_mday = digit_at (str, 6) * 10 + digit_at (str, 7); @@ -26,7 +27,15 @@ time_from_isodate (char *str) my_tm.tm_sec = digit_at (str, 13) * 10 + digit_at (str, 14); my_tm.tm_isdst = -1; - return mktime (&my_tm); + t = mktime (&my_tm); + { + struct tm *tm = localtime (&t); + + printf ("TIEMPO: %d/%d/%d %d:%d:%d\n", + tm->tm_mday, tm->tm_mon, tm->tm_year, + tm->tm_hour, tm->tm_min, tm->tm_sec); + } + return t; } char * |