Update to use new decode/encode syntax.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1952 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-07-01 23:54:55 +00:00
parent 372881f5ef
commit 405d2be7c4
14 changed files with 195 additions and 186 deletions

View File

@@ -11,11 +11,11 @@ krb5_rd_safe(krb5_context context,
{
krb5_error_code r;
KRB_SAFE safe;
int len;
size_t len;
len = decode_KRB_SAFE (inbuf->data, inbuf->length, &safe);
if (len < 0)
return ASN1_PARSE_ERROR;
r = decode_KRB_SAFE (inbuf->data, inbuf->length, &safe, &len);
if (r)
return r;
if (safe.pvno != 5)
return KRB5KRB_AP_ERR_BADVERSION;
if (safe.msg_type != krb_safe)