diff options
author | des <des@FreeBSD.org> | 2002-03-06 15:23:18 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-03-06 15:23:18 +0000 |
commit | c8ad3d5e37d88b73c6e24305bb8fea3e9b7ebf4d (patch) | |
tree | ccebb1cedb6cbcddee28ea72465d354fba0f432d /libexec | |
parent | a13147ab27b5f2e64b3dbd9d94b3df72fa856481 (diff) | |
download | FreeBSD-src-c8ad3d5e37d88b73c6e24305bb8fea3e9b7ebf4d.zip FreeBSD-src-c8ad3d5e37d88b73c6e24305bb8fea3e9b7ebf4d.tar.gz |
YA patch I forgot to commit last night.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/rshd/rshd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c index e3cdf98..626ed11 100644 --- a/libexec/rshd/rshd.c +++ b/libexec/rshd/rshd.c @@ -680,7 +680,7 @@ doit(union sockunion *fromp) environ_pam = pam_getenvlist(pamh); if (environ_pam) export_pam_environment(); - if ((retcode = pam_end(pamh, PAM_DATA_SILENT)) != PAM_SUCCESS) + if ((retcode = pam_end(pamh, 0)) != PAM_SUCCESS) syslog(LOG_ERR|LOG_AUTH, "pam_end: %s", pam_strerror(pamh, retcode)); #endif /* USE_PAM */ |