Fix some type comparison problems

As 26714713cd said, 32 bit signed
timestamps will overflow in the year 2038. It already changed the
utime and ctime in struct mdu_array_info_s from int to unsigned
int. So we need to change the values that compared with them to
unsigned int too.

Signed-off-by : Xiao Ni <xni@redhat.com>
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
This commit is contained in:
Xiao Ni 2016-02-06 09:18:41 +08:00 committed by Jes Sorensen
parent 27c7c87a68
commit 1d13b59960
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@
struct state {
char *devname;
char devnm[32]; /* to sync with mdstat info */
long utime;
unsigned int utime;
int err;
char *spare_group;
int active, working, failed, spare, raid;

2
util.c
View File

@ -1267,7 +1267,7 @@ struct supertype *guess_super_type(int fd, enum guess_types guess_type)
*/
struct superswitch *ss;
struct supertype *st;
time_t besttime = 0;
unsigned int besttime = 0;
int bestsuper = -1;
int i;