commit | d31d057aa37cbff5b7ba0ebe9e6b2a2932b1e78c | [log] [tgz] |
---|---|---|
author | Giovanni Bajo <rasky@develer.com> | Tue Apr 24 02:02:55 2012 +0200 |
committer | Simon Kelley <simon@thekelleys.org.uk> | Tue Aug 20 15:41:18 2013 +0100 |
tree | b66c31c3de5fb6feec001a1e403ae5c91ec0c4d2 | |
parent | 6445c8ed73ee54b1654eb1da5a0fc468003b61e0 [diff] [blame] |
Remove useless endian-conversion after GETLONG().
diff --git a/src/dnssec.c b/src/dnssec.c index 3fef946..5c6bda5 100644 --- a/src/dnssec.c +++ b/src/dnssec.c
@@ -149,7 +149,7 @@ return 0; } - if (!check_date_range(ntohl(date_start), ntohl(date_end))) + if (!check_date_range(date_start, date_end)) { printf("RRSIG outside date range\n"); return 0;