+2001-06-07 Ezra Peisach <epeisach@mit.edu>
+
+ * ser_sctx.c (kg_oid_internalize): Do away with local variable
+ that was set but never used.
+
2001-06-04 Ezra Peisach <epeisach@mit.edu>
* accept_sec_context.c (krb5_gss_accept_sec_context): Cleanup
krb5_octet **buffer;
size_t *lenremain;
{
- krb5_error_code kret;
gss_OID oid;
krb5_int32 ibuf;
krb5_octet *bp;
remain = *lenremain;
/* Read in and check our magic number */
- if ((kret = krb5_ser_unpack_int32(&ibuf, &bp, &remain)))
+ if (krb5_ser_unpack_int32(&ibuf, &bp, &remain))
return (EINVAL);
if (ibuf != KV5M_GSS_OID)
oid->length, &bp, &remain);
/* Read in and check our trailing magic number */
- if ((kret = krb5_ser_unpack_int32(&ibuf, &bp, &remain)))
+ if (krb5_ser_unpack_int32(&ibuf, &bp, &remain))
return (EINVAL);
if (ibuf != KV5M_GSS_OID)