From b1f2138e52debc6ec240741cede282df135e47f9 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Fri, 1 Jul 2011 03:27:01 +0000 Subject: C90 doesn't allow commas at the ends of enumeration lists git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25012 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/crypto/krb/crypto_int.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/crypto/krb/crypto_int.h') diff --git a/src/lib/crypto/krb/crypto_int.h b/src/lib/crypto/krb/crypto_int.h index fa20cc526e..77da87de6a 100644 --- a/src/lib/crypto/krb/crypto_int.h +++ b/src/lib/crypto/krb/crypto_int.h @@ -321,8 +321,9 @@ krb5_error_code krb5int_confounder_verify(const struct krb5_cksumtypes *ctp, /*** Key derivation functions ***/ enum deriv_alg { - DERIVE_RFC3961, /* RFC 3961 section 5.1 */ + DERIVE_RFC3961 /* RFC 3961 section 5.1 */ #ifdef CAMELLIA + , /* C90 doesn't let enum list end w/comma */ DERIVE_SP800_108_CMAC /* NIST SP 800-108 with CMAC as PRF */ #endif }; -- cgit