]> git.kaiwu.me - nginx.git/commitdiff
treat time_t as unsigned time
authorIgor Sysoev <igor@sysoev.ru>
Thu, 31 Jan 2008 15:14:31 +0000 (15:14 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Thu, 31 Jan 2008 15:14:31 +0000 (15:14 +0000)
src/core/ngx_times.c

index 949e0c6f70b25db95cbf28a94d66dfe1faf92613..1ba1210f0fe223bd7356fe0d1e7b4a7387656513 100644 (file)
@@ -203,18 +203,21 @@ ngx_http_cookie_time(u_char *buf, time_t t)
 void
 ngx_gmtime(time_t t, ngx_tm_t *tp)
 {
-    ngx_int_t  sec, min, hour, mday, mon, year, wday, yday, days;
+    ngx_uint_t  n, sec, min, hour, mday, mon, year, wday, yday, days;
 
-    days = (ngx_int_t) (t / 86400);
+    /* the calculation is valid for positive time_t only */
+    n = (ngx_uint_t) t;
+
+    days = n / 86400;
 
     /* Jaunary 1, 1970 was Thursday */
     wday = (4 + days) % 7;
 
-    t %= 86400;
-    hour = (ngx_int_t) (t / 3600);
-    t %= 3600;
-    min = (ngx_int_t) (t / 60);
-    sec = (ngx_int_t) (t % 60);
+    n %= 86400;
+    hour = n / 3600;
+    n %= 3600;
+    min = n / 60;
+    sec = n % 60;
 
     /* the algorithm based on Gauss's formula */