]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
passchange: error message fix
authorMichael Tokarev <mjt@tls.msk.ru>
Mon, 26 Feb 2024 12:35:35 +0000 (15:35 +0300)
committerPavel Filipensky <pfilipensky@samba.org>
Thu, 2 Jan 2025 17:01:30 +0000 (17:01 +0000)
Missing space and newline.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
source3/libsmb/passchange.c

index 16253eabff62308eb45cac302937b126a42c9004..c4a82bfcd238a89849b398564a548348bc87fe72 100644 (file)
@@ -236,8 +236,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) {