mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 23:55:27 +00:00
Remove several superfluous newlines in log messages
This commit is contained in:
@@ -881,7 +881,7 @@ link_entry(dns_adbentrybucket_t *ebucket, dns_adbentry_t *entry) {
|
|||||||
REQUIRE(entry != NULL && entry->bucket == NULL);
|
REQUIRE(entry != NULL && entry->bucket == NULL);
|
||||||
REQUIRE(!ISC_LINK_LINKED(entry, plink));
|
REQUIRE(!ISC_LINK_LINKED(entry, plink));
|
||||||
|
|
||||||
DP(DEF_LEVEL, "link ADB entry %p to bucket %p\n", entry, ebucket);
|
DP(DEF_LEVEL, "link ADB entry %p to bucket %p", entry, ebucket);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we're in the overmem condition, take this opportunity to
|
* If we're in the overmem condition, take this opportunity to
|
||||||
@@ -937,7 +937,7 @@ unlink_entry(dns_adbentry_t *entry) {
|
|||||||
|
|
||||||
REQUIRE(ebucket != NULL);
|
REQUIRE(ebucket != NULL);
|
||||||
|
|
||||||
DP(DEF_LEVEL, "unlink ADB entry %p from bucket %p\n", entry, ebucket);
|
DP(DEF_LEVEL, "unlink ADB entry %p from bucket %p", entry, ebucket);
|
||||||
|
|
||||||
if ((entry->flags & ENTRY_IS_DEAD) != 0) {
|
if ((entry->flags & ENTRY_IS_DEAD) != 0) {
|
||||||
ISC_LIST_UNLINK(ebucket->deadentries, entry, plink);
|
ISC_LIST_UNLINK(ebucket->deadentries, entry, plink);
|
||||||
@@ -2041,7 +2041,7 @@ destroy(dns_adb_t *adb) {
|
|||||||
isc_result_t result;
|
isc_result_t result;
|
||||||
isc_ht_iter_t *it = NULL;
|
isc_ht_iter_t *it = NULL;
|
||||||
|
|
||||||
DP(DEF_LEVEL, "destroying ADB %p\n", adb);
|
DP(DEF_LEVEL, "destroying ADB %p", adb);
|
||||||
|
|
||||||
adb->magic = 0;
|
adb->magic = 0;
|
||||||
|
|
||||||
@@ -2248,7 +2248,7 @@ dns_adb_shutdown(dns_adb_t *adb) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
DP(DEF_LEVEL, "shutting down ADB %p\n", adb);
|
DP(DEF_LEVEL, "shutting down ADB %p", adb);
|
||||||
|
|
||||||
isc_mem_clearwater(adb->mctx);
|
isc_mem_clearwater(adb->mctx);
|
||||||
|
|
||||||
|
@@ -2157,6 +2157,6 @@ isc__nmsocket_writetimeout_cb(void *data, isc_result_t eresult);
|
|||||||
|
|
||||||
#define UV_RUNTIME_CHECK(func, ret) \
|
#define UV_RUNTIME_CHECK(func, ret) \
|
||||||
if (ret != 0) { \
|
if (ret != 0) { \
|
||||||
isc_error_fatal(__FILE__, __LINE__, "%s failed: %s\n", #func, \
|
isc_error_fatal(__FILE__, __LINE__, "%s failed: %s", #func, \
|
||||||
uv_strerror(ret)); \
|
uv_strerror(ret)); \
|
||||||
}
|
}
|
||||||
|
@@ -7005,7 +7005,7 @@ query_checkrrl(query_ctx_t *qctx, isc_result_t result) {
|
|||||||
ISC_LOG_DEBUG(99),
|
ISC_LOG_DEBUG(99),
|
||||||
"rrl=%p, HAVECOOKIE=%u, result=%s, "
|
"rrl=%p, HAVECOOKIE=%u, result=%s, "
|
||||||
"fname=%p(%u), is_zone=%u, RECURSIONOK=%u, "
|
"fname=%p(%u), is_zone=%u, RECURSIONOK=%u, "
|
||||||
"query.rpz_st=%p(%u), RRL_CHECKED=%u\n",
|
"query.rpz_st=%p(%u), RRL_CHECKED=%u",
|
||||||
qctx->client->view->rrl, HAVECOOKIE(qctx->client),
|
qctx->client->view->rrl, HAVECOOKIE(qctx->client),
|
||||||
isc_result_toid(result), qctx->fname,
|
isc_result_toid(result), qctx->fname,
|
||||||
qctx->fname != NULL ? dns_name_isabsolute(qctx->fname) : 0,
|
qctx->fname != NULL ? dns_name_isabsolute(qctx->fname) : 0,
|
||||||
|
Reference in New Issue
Block a user