From 329378dd6e9e4bd8f6407aeeafa3c5b3ff225edc Mon Sep 17 00:00:00 2001 From: Dennis Schridde Date: Thu, 13 Dec 2012 17:55:11 +0100 Subject: [PATCH] Change conversation error without error message from Received-No-Response to Unknown-Error --- pam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pam.c b/pam.c index ad3d955..b824bf2 100644 --- a/pam.c +++ b/pam.c @@ -65,7 +65,7 @@ static int lua_conversation(int num_msg, const struct pam_message **msg, struct } else { lua_settop(L, base); - lua_pushstring(L, "(Received no response)"); + lua_pushstring(L, "Unknown error"); } return PAM_CONV_ERR;