summaryrefslogtreecommitdiffstats
path: root/src/lib/crypto/krb/crypto_int.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2011-07-01 03:27:01 +0000
committerKen Raeburn <raeburn@mit.edu>2011-07-01 03:27:01 +0000
commitb1f2138e52debc6ec240741cede282df135e47f9 (patch)
treeae0582a011def6eb9abdd7445f6e38ca0af8f01e /src/lib/crypto/krb/crypto_int.h
parent7b9d34cb51259d9904b9b11a83d4a641b355f3b5 (diff)
downloadkrb5-b1f2138e52debc6ec240741cede282df135e47f9.tar.gz
krb5-b1f2138e52debc6ec240741cede282df135e47f9.tar.xz
krb5-b1f2138e52debc6ec240741cede282df135e47f9.zip
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
Diffstat (limited to 'src/lib/crypto/krb/crypto_int.h')
-rw-r--r--src/lib/crypto/krb/crypto_int.h3
1 files changed, 2 insertions, 1 deletions
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
};