Reformat some code (no semantic difference).

This commit is contained in:
Giovanni Bajo
2012-04-28 03:59:49 +02:00
committed by Simon Kelley
parent 0852d76b58
commit 41de7442d2

View File

@@ -62,11 +62,8 @@ static int check_date_range(unsigned long date_start, unsigned long date_end)
unsigned long curtime = time(0); unsigned long curtime = time(0);
/* We must explicitly check against wanted values, because of SERIAL_UNDEF */ /* We must explicitly check against wanted values, because of SERIAL_UNDEF */
if (serial_compare_32(curtime, date_start) != SERIAL_GT) return serial_compare_32(curtime, date_start) == SERIAL_GT
return 0; && serial_compare_32(curtime, date_end) == SERIAL_LT;
if (serial_compare_32(curtime, date_end) != SERIAL_LT)
return 0;
return 1;
} }
/* Sort RRs within a RRset in canonical order, according to RFC4034, §6.3 /* Sort RRs within a RRset in canonical order, according to RFC4034, §6.3