svn rev #25012: trunk/src/ include/ lib/crypto/krb/

raeburn@MIT.EDU raeburn at MIT.EDU
Thu Jun 30 23:27:01 EDT 2011


http://src.mit.edu/fisheye/changelog/krb5/?cs=25012
Commit By: raeburn
Log Message:
C90 doesn't allow commas at the ends of enumeration lists.


Changed Files:
U   trunk/src/include/iprop.h
U   trunk/src/lib/crypto/krb/crypto_int.h
Modified: trunk/src/include/iprop.h
===================================================================
--- trunk/src/include/iprop.h	2011-07-01 03:26:58 UTC (rev 25011)
+++ trunk/src/include/iprop.h	2011-07-01 03:27:01 UTC (rev 25012)
@@ -91,7 +91,7 @@
 	AT_PW_POLICY = 16,
 	AT_PW_POLICY_SWITCH = 17,
 	AT_PW_HIST_KVNO = 18,
-	AT_PW_HIST = 19,
+	AT_PW_HIST = 19
 };
 typedef enum kdbe_attr_type_t kdbe_attr_type_t;
 
@@ -169,7 +169,7 @@
 	UPDATE_FULL_RESYNC_NEEDED = 2,
 	UPDATE_BUSY = 3,
 	UPDATE_NIL = 4,
-	UPDATE_PERM_DENIED = 5,
+	UPDATE_PERM_DENIED = 5
 };
 typedef enum update_status_t update_status_t;
 

Modified: trunk/src/lib/crypto/krb/crypto_int.h
===================================================================
--- trunk/src/lib/crypto/krb/crypto_int.h	2011-07-01 03:26:58 UTC (rev 25011)
+++ trunk/src/lib/crypto/krb/crypto_int.h	2011-07-01 03:27:01 UTC (rev 25012)
@@ -321,8 +321,9 @@
 /*** 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
 };




More information about the cvs-krb5 mailing list