Skip to content

Commit 5ec2112

Browse files
committed
- Fix empty debug statement body in catalog consumer zone process.
1 parent c3f7009 commit 5ec2112

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

doc/ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
8 September 2025: Wouter
2+
- Fix empty debug statement body in catalog consumer zone process.
3+
14
03 September 2025: Jannik
25
- Fix zonestatfd check
36
- The main branch continues with version 4.13.1 in development.

doc/RELNOTES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ NSD RELEASE NOTES
44
================
55
FEATURES:
66
BUG FIXES:
7+
- Fix empty debug statement body in catalog consumer zone process.
78

89
4.13.0
910
================

xfrd-catalog-zones.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,13 +715,14 @@ xfrd_process_catalog_consumer_zone(
715715
member_id_to_delete_str));
716716
catalog_del_consumer_member_zone(
717717
consumer_zone, to_delete);
718-
if(cursor != RBTREE_NULL)
718+
if(cursor != RBTREE_NULL) {
719719
DEBUG(DEBUG_XFRD,1, (LOG_INFO,
720720
"Comparing %s with %s",
721721
member_id_str,
722722
dname_to_string(
723723
cursor_member_id(cursor),
724724
NULL)));
725+
}
725726
}
726727
if (cursor != RBTREE_NULL && cmp == 0) {
727728
/* member_id is also in an current catalog

0 commit comments

Comments
 (0)