1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-26 01:49:31 +03:00

s3: smbd: Don't log at WARNING level when exiting the server on error.

Signed-off-by: Richard Sharpe <realrichardsharpe@gmail.com>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Richard Sharpe
2019-05-16 13:51:06 -07:00
committed by Jeremy Allison
parent 749f1290ce
commit 1078b273f8

View File

@ -2101,7 +2101,7 @@ extern void build_options(bool screen);
if (lp_clustering() && !lp_allow_unsafe_cluster_upgrade()) {
status = smbd_claim_version(msg_ctx, samba_version_string());
if (!NT_STATUS_IS_OK(status)) {
DBG_WARNING("Could not claim version: %s\n",
DBG_ERR("Could not claim version: %s\n",
nt_errstr(status));
return -1;
}