1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s4:dns_server: Add missing newline to logging message

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-07 16:52:33 +12:00 committed by Andrew Bartlett
parent ffbd69ed71
commit 1e753542aa

View File

@ -125,7 +125,7 @@ WERROR dns_common_extract(struct ldb_context *samdb,
ret = samdb_dns_host_name(samdb, &dnsHostName);
if (ret != LDB_SUCCESS || dnsHostName == NULL) {
DEBUG(0, ("Failed to get dnsHostName from rootDSE"));
DEBUG(0, ("Failed to get dnsHostName from rootDSE\n"));
return DNS_ERR(SERVER_FAILURE);
}