From ea3e5d43d5ec7b73e4dd1da9ce56026844f5f8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 27 Nov 2015 19:07:58 +0100 Subject: [PATCH] passwd: Fixed copy&paste error in error message. --- src/bin/multiuser/passwd.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/multiuser/passwd.cpp b/src/bin/multiuser/passwd.cpp index 920002cf29..44beda27dd 100644 --- a/src/bin/multiuser/passwd.cpp +++ b/src/bin/multiuser/passwd.cpp @@ -3,6 +3,7 @@ * Distributed under the terms of the MIT License. */ + #include #include #include @@ -189,7 +190,8 @@ main(int argc, const char* const* argv) KMessage reply; status_t error = send_authentication_request_to_registrar(message, reply); if (error != B_OK) { - fprintf(stderr, "Error: Failed to create user: %s\n", strerror(error)); + fprintf(stderr, "Error: Failed to set the password: %s\n", + strerror(error)); exit(1); }