From 3fcf71d3ffd696df242206d89024bf359785e644 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 15 Apr 2012 23:34:49 -0400 Subject: [PATCH] Corrected the spelling of 'Username too long:' and reduced it from a LOG_EMERG to a LOG_INFO. --- citadel/user_ops.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citadel/user_ops.h b/citadel/user_ops.h index 15107af7d..3afe55013 100644 --- a/citadel/user_ops.h +++ b/citadel/user_ops.h @@ -67,7 +67,7 @@ static INLINE long cutuserkey(char *username) { len = strlen(username); if (len >= USERNAME_SIZE) { - syslog(LOG_EMERG, "Username to long: %s", username); + syslog(LOG_INFO, "Username too long: %s", username); cit_backtrace (); len = USERNAME_SIZE - 1; username[len]='\0'; @@ -85,7 +85,7 @@ static INLINE void makeuserkey(char *key, const char *username, long len) { if (len >= USERNAME_SIZE) { - syslog(LOG_EMERG, "Username to long: %s", username); + syslog(LOG_INFO, "Username too long: %s", username); cit_backtrace (); len = USERNAME_SIZE - 1; } -- 2.39.2