From b681aa5b9f985247df31772282e520479ffb2ece Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 31 Dec 2011 18:06:17 +0100 Subject: [PATCH] PAM: don't use global password buffer for conv struct Use the pointer of the password of the client directly. Eventually we can get rid of the global password again ... --- src/ngircd/pam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngircd/pam.c b/src/ngircd/pam.c index b28e866f..6382c594 100644 --- a/src/ngircd/pam.c +++ b/src/ngircd/pam.c @@ -103,7 +103,7 @@ PAM_Authenticate(CLIENT *Client) { if (password) free(password); password = strdup(Client_Password(Client)); - conv.appdata_ptr = password; + conv.appdata_ptr = Client_Password(Client); /* Initialize PAM */ retval = pam_start("ngircd", Client_OrigUser(Client), &conv, &pam); -- 2.39.2