From 82a36aefae570e087a2054cf1eee861390e77346 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sat, 5 Nov 2011 10:00:29 +0000 Subject: [PATCH] Remove an unused variable from pam_unix. This variable was added in r82352 back in 2001, but even then it didn't have any use. Because it's not marked static, the C compiler won't complain about it. Discussed with: des --- lib/libpam/modules/pam_unix/pam_unix.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/libpam/modules/pam_unix/pam_unix.c b/lib/libpam/modules/pam_unix/pam_unix.c index 5c6c8f78b777..415004a4d84f 100644 --- a/lib/libpam/modules/pam_unix/pam_unix.c +++ b/lib/libpam/modules/pam_unix/pam_unix.c @@ -81,8 +81,6 @@ static char password_hash[] = PASSWORD_HASH; #define PAM_OPT_LOCAL_PASS "local_pass" #define PAM_OPT_NIS_PASS "nis_pass" -char *tempname = NULL; - /* * authentication management */