From: Richard Sharpe Date: Thu, 16 May 2019 20:51:06 +0000 (-0700) Subject: s3: smbd: Don't log at WARNING level when exiting the server on error. X-Git-Tag: tdb-1.4.1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1078b273f84cf216b50ddec18ee6a2b3c8c17bc6;p=thirdparty%2Fsamba.git s3: smbd: Don't log at WARNING level when exiting the server on error. Signed-off-by: Richard Sharpe Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 3ef7befef3f..3ac9be90f7d 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -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; }