Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 111757
b: refs/heads/master
c: 2cdc557
h: refs/heads/master
i:
  111755: f2b2d18
v: v3
  • Loading branch information
Kaihui Luo authored and David S. Miller committed Sep 23, 2008
1 parent c588eac commit 0b0f213
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 147e70e62fdd5af6263106ad634b03c5154c1e56
refs/heads/master: 2cdc55751c33829f00510e0104562d0f8d8a9b85
6 changes: 4 additions & 2 deletions trunk/net/netfilter/xt_time.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,19 @@ static void localtime_3(struct xtm *r, time_t time)
* from w repeatedly while counting.)
*/
if (is_leap(year)) {
/* use days_since_leapyear[] in a leap year */
for (i = ARRAY_SIZE(days_since_leapyear) - 1;
i > 0 && days_since_year[i] > w; --i)
i > 0 && days_since_leapyear[i] > w; --i)
/* just loop */;
r->monthday = w - days_since_leapyear[i] + 1;
} else {
for (i = ARRAY_SIZE(days_since_year) - 1;
i > 0 && days_since_year[i] > w; --i)
/* just loop */;
r->monthday = w - days_since_year[i] + 1;
}

r->month = i + 1;
r->monthday = w - days_since_year[i] + 1;
return;
}

Expand Down

0 comments on commit 0b0f213

Please sign in to comment.