diff options
Diffstat (limited to 'source4/lib/crypto/hmacmd5test.c')
-rw-r--r-- | source4/lib/crypto/hmacmd5test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/crypto/hmacmd5test.c b/source4/lib/crypto/hmacmd5test.c index 3e277a9232..07ed54c98d 100644 --- a/source4/lib/crypto/hmacmd5test.c +++ b/source4/lib/crypto/hmacmd5test.c @@ -31,9 +31,9 @@ static DATA_BLOB data_blob_repeat_byte(uint8_t byte, size_t length) /* This uses the test values from rfc 2104, 2202 */ -BOOL torture_local_crypto_hmacmd5(struct torture_context *torture) +bool torture_local_crypto_hmacmd5(struct torture_context *torture) { - BOOL ret = True; + bool ret = true; uint32_t i; struct { DATA_BLOB key; @@ -90,7 +90,7 @@ BOOL torture_local_crypto_hmacmd5(struct torture_context *torture) dump_data(0, testarray[i].data.data, testarray[i].data.length); dump_data(0, testarray[i].md5.data, testarray[i].md5.length); dump_data(0, md5, sizeof(md5)); - ret = False; + ret = false; } } |