From 84124c313a3a86f3aa3dbaeb32adc99505920377 Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Tue, 28 Jun 2016 11:56:04 +0000 Subject: [PATCH] Update: Added spaces to output of auth_result2str(). This adds spaces into the strings such as "nomatch" (-> "no match") as returned by auth_result2str(). This is to improve readability of resulting logfiles by most uses. --- src/auth.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/auth.c b/src/auth.c index 1ca46778..47427560 100644 --- a/src/auth.c +++ b/src/auth.c @@ -80,16 +80,16 @@ static const char *auth_result2str(auth_result res) return "forbidden"; break; case AUTH_NOMATCH: - return "nomatch"; + return "no match"; break; case AUTH_USERADDED: - return "useradded"; + return "user added"; break; case AUTH_USEREXISTS: - return "userexists"; + return "user exists"; break; case AUTH_USERDELETED: - return "userdeleted"; + return "user deleted"; break; default: return "(unknown)";