From 12362038a714151ffa9603d48af696c2175f42ee Mon Sep 17 00:00:00 2001 From: Polonkai Gergely Date: Fri, 6 Apr 2012 08:25:29 +0000 Subject: [PATCH] Removed debug log message that outputs the password. Signed-off-by: Gergely POLONKAI (W00d5t0ck) --- wmud/players.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/wmud/players.c b/wmud/players.c index 7aa54b8..ef03f34 100644 --- a/wmud/players.c +++ b/wmud/players.c @@ -55,8 +55,6 @@ GSList *players = NULL; gboolean wmud_player_auth(wmudClient *client) { - g_log(G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "Player entered %s as password", client->buffer->str); - if (g_strcmp0(crypt(client->buffer->str, client->player->cpassword), client->player->cpassword) == 0) return TRUE;