From e7b593f31c434b48d5abe81fff3b2cc420a44c3c Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 14 Jul 2015 19:29:20 -0400 Subject: [PATCH] userdel: Fix typo. --- src/bin/multiuser/userdel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/multiuser/userdel.cpp b/src/bin/multiuser/userdel.cpp index c31cff0df3..7acdb7ed81 100644 --- a/src/bin/multiuser/userdel.cpp +++ b/src/bin/multiuser/userdel.cpp @@ -52,7 +52,7 @@ main(int argc, const char* const* argv) if (c == -1) break; - + switch (c) { case 'h': print_usage_and_exit(false); @@ -75,7 +75,7 @@ main(int argc, const char* const* argv) } if (getpwnam(user) == NULL) { - fprintf(stderr, "Error: User \"%s\" doesn't exists.\n", user); + fprintf(stderr, "Error: User \"%s\" doesn't exist.\n", user); exit(1); }