From 5e892fb674c13e5a3b35b310557d1e2a43bd5bb5 Mon Sep 17 00:00:00 2001 From: Arvid Requate Date: Sun, 18 May 2014 19:16:06 +0200 Subject: s4-dns: dlz_bind9: improve log message consistency Change-Id: I0a12c048fd4e667b9aa0777f99c8f8306fc090ea Signed-off-by: Arvid Requate Reviewed-by: Andrew Bartlett Reviewed-by: Kai Blin Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Mon May 26 05:55:46 CEST 2014 on sn-devel-104 --- source4/dns_server/dlz_bind9.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4') 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; } -- cgit