summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authormouring <mouring>2001-02-10 21:27:11 +0000
committermouring <mouring>2001-02-10 21:27:11 +0000
commita8b7ddc4eaa990084b6571e190dc12944a8e52a5 (patch)
treee8d7cc5043d6c2fa753952586479868086349513 /auth1.c
parentb0e4852ffa47bac6bdeb5f0acc1561fb8cc3ebd6 (diff)
downloadopenssh-a8b7ddc4eaa990084b6571e190dc12944a8e52a5.tar.gz
- markus@cvs.openbsd.org 2001/02/07 22:35:46
[auth1.c auth2.c sshd.c] move k_setpag() to a central place; ok dugsong@
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/auth1.c b/auth1.c
index 1feedc9a..ee7aac48 100644
--- a/auth1.c
+++ b/auth1.c
@@ -10,7 +10,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth1.c,v 1.14 2001/01/22 23:06:39 markus Exp $");
+RCSID("$OpenBSD: auth1.c,v 1.15 2001/02/07 22:35:45 markus Exp $");
#ifdef HAVE_OSF_SIA
# include <sia.h>
@@ -389,14 +389,6 @@ do_authentication()
setproctitle("%s", user);
-#ifdef AFS
- /* If machine has AFS, set process authentication group. */
- if (k_hasafs()) {
- k_setpag();
- k_unlog();
- }
-#endif /* AFS */
-
/* Verify that the user is a valid user. */
pw = getpwnam(user);
if (pw && allowed_user(pw)) {