[auth2-krb5.c]
     fix 64bit issue; report itojun@
This commit is contained in:
Damien Miller 2003-05-16 11:38:46 +10:00
Родитель f9b3feb847
Коммит 99b4b88aba
2 изменённых файлов: 8 добавлений и 3 удалений

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

@ -7,6 +7,9 @@
- jakob@cvs.openbsd.org 2003/05/15 14:02:47
[readconf.c servconf.c]
warn for unsupported config option. ok markus@
- markus@cvs.openbsd.org 2003/05/15 14:09:21
[auth2-krb5.c]
fix 64bit issue; report itojun@
20030515
- (djm) OpenBSD CVS Sync
@ -1538,4 +1541,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@
$Id: ChangeLog,v 1.2725 2003/05/16 01:38:32 djm Exp $
$Id: ChangeLog,v 1.2726 2003/05/16 01:38:46 djm Exp $

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

@ -23,7 +23,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: auth2-krb5.c,v 1.1 2003/05/14 02:15:47 markus Exp $");
RCSID("$OpenBSD: auth2-krb5.c,v 1.2 2003/05/15 14:09:21 markus Exp $");
#ifdef KRB5
@ -44,10 +44,12 @@ static int
userauth_kerberos(Authctxt *authctxt)
{
krb5_data tkt, reply;
u_int dlen;
char *client = NULL;
int authenticated = 0;
tkt.data = packet_get_string(&tkt.length);
tkt.data = packet_get_string(&dlen);
tkt.length = dlen;
packet_check_eom();
if (PRIVSEP(auth_krb5(authctxt, &tkt, &client, &reply))) {