2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

reinsert accidentally removed + in db trace

It only affects development when using `DNS_DB_TRACE`.
This commit is contained in:
Aydın Mercan 2024-05-17 16:52:42 +03:00 committed by Evan Hunt
parent 49e62ee186
commit 03a59cbb04

View File

@ -151,7 +151,7 @@ dns_db_create(isc_mem_t *mctx, const char *db_type, const dns_name_t *origin,
#if DNS_DB_TRACE
fprintf(stderr, "dns_db_create:%s:%s:%d:%p->references = 1\n",
__func__, __FILE__, __LINE__ 1, *dbp);
__func__, __FILE__, __LINE__ + 1, *dbp);
#endif
return (result);
}