summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/iprop.h4
-rw-r--r--src/lib/crypto/krb/crypto_int.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/include/iprop.h b/src/include/iprop.h
index 9cfbb30936..7367666e2c 100644
--- a/src/include/iprop.h
+++ b/src/include/iprop.h
@@ -91,7 +91,7 @@ enum kdbe_attr_type_t {
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 @@ enum update_status_t {
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;
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
};