From: Michael Tokarev Date: Mon, 26 Feb 2024 12:35:35 +0000 (+0300) Subject: passchange: error message fix X-Git-Tag: archive/raspbian/2%4.22.0+dfsg-1+rpi1^2^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2cb592003a8d1a37521d5412e63750282840e574;p=samba.git passchange: error message fix Forwarded: https://gitlab.com/samba-team/samba/-/merge_requests/3872 Missing space and newline. Signed-off-by: Michael Tokarev Gbp-Pq: Name passchange-error-message.patch --- diff --git a/source3/libsmb/passchange.c b/source3/libsmb/passchange.c index 3231d0bf..c8bb0df0 100644 --- a/source3/libsmb/passchange.c +++ b/source3/libsmb/passchange.c @@ -232,8 +232,8 @@ NTSTATUS remote_password_change(const char *remote_machine, if (!NT_STATUS_IS_OK(result)) { int rc = asprintf( err_str, - "machine %s rejected to change the password" - "with error: %s", + "machine %s rejected to change the password " + "with error: %s\n", remote_machine, get_friendly_nt_error_msg(result)); if (rc <= 0) {