summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-09-16 09:40:33 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-09-16 09:40:33 +0000
commit9e3d9a2a009d2a0281802a84e1c5cc1c887edc71 (patch)
treeea994af7deeef43977f60a9ab26131e8cd90a9a0 /time.c
parent69a3aaf154948d653fa3653cd2b3c3b3af979769 (diff)
1.4.1
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/time.c b/time.c
index f8296e6e20..8a6d562a87 100644
--- a/time.c
+++ b/time.c
@@ -208,8 +208,8 @@ time_arg(argc, argv, tm)
}
tm->tm_year = obj2long(v[0]);
- if (tm->tm_year < 69) tm->tm_year += 100;
- if (tm->tm_year >= 1000) tm->tm_year -= 1900;
+ if (0 < tm->tm_year && tm->tm_year < 69) tm->tm_year += 100;
+ if (tm->tm_year >= 1900) tm->tm_year -= 1900;
if (NIL_P(v[1])) {
tm->tm_mon = 0;
}
@@ -263,9 +263,9 @@ make_time_t(tptr, fn)
struct tm *(*fn)();
{
struct timeval tv;
- time_t guess, t;
+ time_t oguess, guess;
struct tm *tm;
- long diff;
+ long t, diff;
if (gettimeofday(&tv, 0) < 0) {
rb_sys_fail("gettimeofday");
@@ -276,9 +276,10 @@ make_time_t(tptr, fn)
if (!tm) goto error;
t = tptr->tm_year;
if (t < 69) goto out_of_range;
- while (diff = t - (tm->tm_year)) {
+ while (diff = t - tm->tm_year) {
+ oguess = guess;
guess += diff * 364 * 24 * 3600;
- if (diff > 0 && guess < 0) goto out_of_range;
+ if (diff > 0 && guess <= oguess) goto out_of_range;
tm = (*fn)(&guess);
if (!tm) goto error;
}
@@ -292,7 +293,7 @@ make_time_t(tptr, fn)
guess += (tptr->tm_mday - tm->tm_mday) * 3600 * 24;
guess += (tptr->tm_hour - tm->tm_hour) * 3600;
guess += (tptr->tm_min - tm->tm_min) * 60;
- guess += tptr->tm_sec - tm->tm_sec;
+ guess += (tptr->tm_sec - tm->tm_sec);
if (guess < 0) goto out_of_range;
return guess;
@@ -302,7 +303,7 @@ make_time_t(tptr, fn)
error:
rb_raise(rb_eArgError, "gmtime/localtime error");
- return Qnil; /* not reached */
+ return 0; /* not reached */
}
static VALUE