- (dtucker) [auth-pam.c] Only use pam_putenv if our platform has it. ok djm@

This commit is contained in:
Darren Tucker 2003-11-18 12:45:35 +11:00
Родитель 18df00cc77
Коммит 8a1624c42d
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -4,6 +4,7 @@
- (dtucker) [auth-pam.c] Convert chauthtok_conv into a generic tty_conv,
and use it for do_pam_session. Fixes problems like pam_motd not displaying
anything. ok djm@
- (dtucker) [auth-pam.c] Only use pam_putenv if our platform has it. ok djm@
20031117
- (djm) OpenBSD CVS Sync
@ -1479,4 +1480,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3114 2003/11/18 01:42:07 dtucker Exp $
$Id: ChangeLog,v 1.3115 2003/11/18 01:45:35 dtucker Exp $

Просмотреть файл

@ -31,7 +31,7 @@
/* Based on $FreeBSD: src/crypto/openssh/auth2-pam-freebsd.c,v 1.11 2003/03/31 13:48:18 des Exp $ */
#include "includes.h"
RCSID("$Id: auth-pam.c,v 1.81 2003/11/18 01:42:08 dtucker Exp $");
RCSID("$Id: auth-pam.c,v 1.82 2003/11/18 01:45:36 dtucker Exp $");
#ifdef USE_PAM
#include <security/pam_appl.h>
@ -167,11 +167,13 @@ import_environments(Buffer *b)
for(i = 0; i < num_env; i++) {
env = buffer_get_string(b, NULL);
#ifdef HAVE_PAM_PUTENV
/* Errors are not fatal here */
if ((err = pam_putenv(sshpam_handle, env)) != PAM_SUCCESS) {
error("PAM: pam_putenv: %s",
pam_strerror(sshpam_handle, sshpam_err));
}
#endif
}
}