summaryrefslogtreecommitdiff
path: root/security/sudo/files/patch-auth::pam.c
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>2004-08-20 06:49:35 +0000
committerMichael Haro <mharo@FreeBSD.org>2004-08-20 06:49:35 +0000
commit41fc6dd01dce82b627429a53cc12596793d04b3c (patch)
tree01722534b4637e356b8580f4b28aee7b28c0c827 /security/sudo/files/patch-auth::pam.c
parentReset bouncing maintainer address. (diff)
Update to 1.6.8
Notes
Notes: svn path=/head/; revision=116736
Diffstat (limited to 'security/sudo/files/patch-auth::pam.c')
-rw-r--r--security/sudo/files/patch-auth::pam.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/security/sudo/files/patch-auth::pam.c b/security/sudo/files/patch-auth::pam.c
deleted file mode 100644
index bed7753f8257..000000000000
--- a/security/sudo/files/patch-auth::pam.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- auth/pam.c.orig Wed Apr 2 11:55:50 2003
-+++ auth/pam.c Wed Apr 2 11:57:32 2003
-@@ -224,11 +224,11 @@
- p = pm->msg;
- /* Read the password. */
- pass = tgetpass(p, def_ival(I_PASSWD_TIMEOUT) * 60, flags);
-- pr->resp = estrdup(pass ? pass : "");
-+ pr->resp = estrdup((const char *)pass ? (const char *)pass : "");
- if (*pr->resp == '\0')
- nil_pw = 1; /* empty password */
- else
-- memset(pass, 0, strlen(pass));
-+ memset((void *)pass, 0, strlen((const char *)pass));
- break;
- case PAM_TEXT_INFO:
- if (pm->msg)