aboutsummaryrefslogtreecommitdiff
path: root/src/zonemaster/gnunet-service-zonemaster-monitor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/zonemaster/gnunet-service-zonemaster-monitor.c')
-rw-r--r--src/zonemaster/gnunet-service-zonemaster-monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zonemaster/gnunet-service-zonemaster-monitor.c b/src/zonemaster/gnunet-service-zonemaster-monitor.c
index 081398f0e..b51d1cb97 100644
--- a/src/zonemaster/gnunet-service-zonemaster-monitor.c
+++ b/src/zonemaster/gnunet-service-zonemaster-monitor.c
@@ -265,13 +265,13 @@ convert_records_for_export (const struct GNUNET_GNSRECORD_Data *rd,
265 now = GNUNET_TIME_absolute_get (); 265 now = GNUNET_TIME_absolute_get ();
266 for (unsigned int i = 0; i < rd_count; i++) 266 for (unsigned int i = 0; i < rd_count; i++)
267 { 267 {
268 if (0 != (rd[i].flags & GNUNET_GNSRECORD_RF_PRIVATE))
269 continue;
270 if (GNUNET_GNSRECORD_TYPE_TOMBSTONE == rd[i].record_type) 268 if (GNUNET_GNSRECORD_TYPE_TOMBSTONE == rd[i].record_type)
271 { 269 {
272 tombstone = rd[i].data; 270 tombstone = rd[i].data;
273 continue; 271 continue;
274 } 272 }
273 if (0 != (rd[i].flags & GNUNET_GNSRECORD_RF_PRIVATE))
274 continue;
275 if ((0 == (rd[i].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION)) && 275 if ((0 == (rd[i].flags & GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION)) &&
276 (rd[i].expiration_time < now.abs_value_us)) 276 (rd[i].expiration_time < now.abs_value_us))
277 continue; /* record already expired, skip it */ 277 continue; /* record already expired, skip it */