aboutsummaryrefslogtreecommitdiff
path: root/src/lib/crypto/krb/valid_cksumtype.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/crypto/krb/valid_cksumtype.c')
-rw-r--r--src/lib/crypto/krb/valid_cksumtype.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/crypto/krb/valid_cksumtype.c b/src/lib/crypto/krb/valid_cksumtype.c
index 8fd9eff..56a92df 100644
--- a/src/lib/crypto/krb/valid_cksumtype.c
+++ b/src/lib/crypto/krb/valid_cksumtype.c
@@ -32,16 +32,16 @@ krb5_c_valid_cksumtype(krb5_cksumtype ctype)
{
unsigned int i;
- for (i=0; i<krb5_cksumtypes_length; i++) {
+ for (i = 0; i < krb5_cksumtypes_length; i++) {
if (krb5_cksumtypes_list[i].ctype == ctype)
- return(1);
+ return TRUE;
}
- return(0);
+ return FALSE;
}
krb5_boolean KRB5_CALLCONV
valid_cksumtype(krb5_cksumtype ctype)
{
- return krb5_c_valid_cksumtype (ctype);
+ return krb5_c_valid_cksumtype(ctype);
}