(not_equal_tm): Remove redundant check.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 Oct 2004 21:48:17 +0000 (21:48 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 27 Oct 2004 21:48:17 +0000 (21:48 +0000)
lib/mktime.c

index a017a51c8d39607cb51df7f5b09542d2c2decacf..772b4f3478f1892ac2b4da4f6bf4ad6b0052cfd8 100644 (file)
@@ -495,7 +495,6 @@ not_equal_tm (const struct tm *a, const struct tm *b)
          | (a->tm_mday ^ b->tm_mday)
          | (a->tm_mon ^ b->tm_mon)
          | (a->tm_year ^ b->tm_year)
-         | (a->tm_mday ^ b->tm_mday)
          | (a->tm_yday ^ b->tm_yday)
          | (a->tm_isdst ^ b->tm_isdst));
 }