svn commit: r226637 - stable/9/sys/kgssapi/krb5
Christian Brueffer
brueffer at FreeBSD.org
Sat Oct 22 17:51:45 UTC 2011
Author: brueffer
Date: Sat Oct 22 17:51:45 2011
New Revision: 226637
URL: http://svn.freebsd.org/changeset/base/226637
Log:
MFC: r226185
Add missing break statement to make sure all 3DES etypes really are treated
the same.
Approved by: re (kib)
Modified:
stable/9/sys/kgssapi/krb5/krb5_mech.c
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/amd64/include/xen/ (props changed)
stable/9/sys/boot/ (props changed)
stable/9/sys/boot/i386/efi/ (props changed)
stable/9/sys/boot/ia64/efi/ (props changed)
stable/9/sys/boot/ia64/ski/ (props changed)
stable/9/sys/boot/powerpc/boot1.chrp/ (props changed)
stable/9/sys/boot/powerpc/ofw/ (props changed)
stable/9/sys/cddl/contrib/opensolaris/ (props changed)
stable/9/sys/conf/ (props changed)
stable/9/sys/contrib/dev/acpica/ (props changed)
stable/9/sys/contrib/octeon-sdk/ (props changed)
stable/9/sys/contrib/pf/ (props changed)
stable/9/sys/contrib/x86emu/ (props changed)
Modified: stable/9/sys/kgssapi/krb5/krb5_mech.c
==============================================================================
--- stable/9/sys/kgssapi/krb5/krb5_mech.c Sat Oct 22 16:53:29 2011 (r226636)
+++ stable/9/sys/kgssapi/krb5/krb5_mech.c Sat Oct 22 17:51:45 2011 (r226637)
@@ -288,6 +288,7 @@ get_keys(struct krb5_context *kc)
case ETYPE_DES3_CBC_SHA1:
case ETYPE_OLD_DES3_CBC_SHA1:
etype = ETYPE_DES3_CBC_SHA1;
+ break;
default:
etype = keydata->kk_type;
More information about the svn-src-stable-9
mailing list