summaryrefslogtreecommitdiffstats
path: root/source4
diff options
context:
space:
mode:
authorArvid Requate <requate@univention.de>2014-05-18 19:16:06 +0200
committerAndrew Bartlett <abartlet@samba.org>2014-05-26 05:55:46 +0200
commit5e892fb674c13e5a3b35b310557d1e2a43bd5bb5 (patch)
tree68157d7722e7d47e6e29c1ec7c14a43668545666 /source4
parentf15d10df29285024eae75eb83e03ff14d22524e6 (diff)
downloadsamba-5e892fb674c13e5a3b35b310557d1e2a43bd5bb5.tar.gz
samba-5e892fb674c13e5a3b35b310557d1e2a43bd5bb5.tar.xz
samba-5e892fb674c13e5a3b35b310557d1e2a43bd5bb5.zip
s4-dns: dlz_bind9: improve log message consistency
Change-Id: I0a12c048fd4e667b9aa0777f99c8f8306fc090ea Signed-off-by: Arvid Requate <requate@univention.de> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Kai Blin <kai@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Mon May 26 05:55:46 CEST 2014 on sn-devel-104
Diffstat (limited to 'source4')
-rw-r--r--source4/dns_server/dlz_bind9.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/dns_server/dlz_bind9.c b/source4/dns_server/dlz_bind9.c
index fbb07f3bdf3..3ffb06b3ef7 100644
--- a/source4/dns_server/dlz_bind9.c
+++ b/source4/dns_server/dlz_bind9.c
@@ -210,7 +210,7 @@ static bool b9_format(struct dlz_bind9_data *state,
}
default:
- state->log(ISC_LOG_ERROR, "samba b9_putrr: unhandled record type %u",
+ state->log(ISC_LOG_ERROR, "samba_dlz b9_format: unhandled record type %u",
rec->wType);
return false;
}
@@ -379,14 +379,14 @@ static bool b9_parse(struct dlz_bind9_data *state,
break;
default:
- state->log(ISC_LOG_ERROR, "samba b9_parse: unhandled record type %u",
+ state->log(ISC_LOG_ERROR, "samba_dlz b9_parse: unhandled record type %u",
rec->wType);
return false;
}
/* we should be at the end of the buffer now */
if (strtok_r(NULL, "\t ", &saveptr) != NULL) {
- state->log(ISC_LOG_ERROR, "samba b9_parse: unexpected data at end of string for '%s'",
+ state->log(ISC_LOG_ERROR, "samba_dlz b9_parse: unexpected data at end of string for '%s'",
rdatastr);
return false;
}
@@ -1496,7 +1496,7 @@ static bool b9_record_match(struct dlz_bind9_data *state,
rec1->data.soa.expire == rec2->data.soa.expire &&
rec1->data.soa.minimum == rec2->data.soa.minimum;
default:
- state->log(ISC_LOG_ERROR, "samba b9_putrr: unhandled record type %u",
+ state->log(ISC_LOG_ERROR, "samba_dlz b9_record_match: unhandled record type %u",
rec1->wType);
break;
}