Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
6 March 2026: Wouter
- Merge #477: Improve ignored old serial log message.

24 February 2026: Willem
- The master branch continues with version 4.14.2 in development

Expand Down
3 changes: 2 additions & 1 deletion doc/RELNOTES
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
NSD RELEASE NOTES

4.14.2
4.14.2 (in development)
================
FEATURES:
BUG FIXES:
- Merge #477: Improve ignored old serial log message.

4.14.1
================
Expand Down
12 changes: 6 additions & 6 deletions xfrd.c
Original file line number Diff line number Diff line change
Expand Up @@ -2302,12 +2302,12 @@ xfrd_parse_received_xfr_packet(xfrd_zone_type* zone, buffer_type* packet,
if(zone->soa_disk_acquired != 0 &&
zone->state != xfrd_zone_expired /* if expired - accept anything */ &&
compare_serial(ntohl(soa->serial), ntohl(zone->soa_disk.serial)) < 0) {
DEBUG(DEBUG_XFRD,1, (LOG_INFO,
"xfrd: zone %s ignoring old serial (%u/%u) from %s",
zone->apex_str, ntohl(zone->soa_disk.serial), ntohl(soa->serial), zone->master->ip_address_spec));
VERBOSITY(1, (LOG_INFO,
"xfrd: zone %s ignoring old serial (%u/%u) from %s",
zone->apex_str, ntohl(zone->soa_disk.serial), ntohl(soa->serial), zone->master->ip_address_spec));
DEBUG(DEBUG_XFRD,1, (LOG_INFO,
"xfrd: zone %s ignoring old serial (local: %u, remote: %u) from %s",
zone->apex_str, ntohl(zone->soa_disk.serial), ntohl(soa->serial), zone->master->ip_address_spec));
VERBOSITY(1, (LOG_INFO,
"xfrd: zone %s ignoring old serial (local: %u, remote: %u) from %s",
zone->apex_str, ntohl(zone->soa_disk.serial), ntohl(soa->serial), zone->master->ip_address_spec));
region_destroy(tempregion);
return xfrd_packet_bad;
}
Expand Down
Loading