[12371] in Athena Bugs
Kerberos (login.krb) bug
daemon@ATHENA.MIT.EDU (Matt Braun)
Wed Aug 10 19:12:07 1994
To: bugs@MIT.EDU
Cc: network@MIT.EDU, ops@MIT.EDU
Date: Wed, 10 Aug 1994 19:11:51 EDT
From: Matt Braun <mhbraun@MIT.EDU>
Please install this patch to login.krb.
Thanks,
Matt
*** /afs/rel-eng.athena.mit.edu/project/release/source/athena/athena.lib/kerberos.p9/appl/bsd/login.c Mon Mar 7 15:14:12 1994
--- login.c Wed Aug 10 19:03:43 1994
***************
*** 1207,1213 ****
}
pwd = get_pwnam(lusername);
if (pwd == NULL) {
! pwd = NULL;
return(-1);
}
--- 1207,1216 ----
}
pwd = get_pwnam(lusername);
if (pwd == NULL) {
! if (strict) {
! printf("Sorry, you must have Kerberos authentication to access this host.\r\n");
! exit(1);
! }
return(-1);
}