From 769592f39734a910ceb5bd568b95241a05883198 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sat, 21 Nov 1998 22:15:14 +0000 Subject: [PATCH] (krb5_auth_con_init): more type correctness git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5211 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/auth_context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/auth_context.c b/lib/krb5/auth_context.c index b9acfbe8b..2503f5b36 100644 --- a/lib/krb5/auth_context.c +++ b/lib/krb5/auth_context.c @@ -58,8 +58,8 @@ krb5_auth_con_init(krb5_context context, memset (p->authenticator, 0, sizeof(*p->authenticator)); p->flags = KRB5_AUTH_CONTEXT_DO_TIME; - p->cksumtype = 0; /* CKSUMTYPE_RSA_MD5_DES */ - p->enctype = 0; /* ETYPE_DES_CBC_MD5 */ + p->cksumtype = CKSUMTYPE_NONE; /* CKSUMTYPE_RSA_MD5_DES */ + p->enctype = ETYPE_NULL; /* ETYPE_DES_CBC_MD5 */ p->local_address = NULL; p->remote_address = NULL; *auth_context = p;