summaryrefslogtreecommitdiffstats
path: root/test/hmactest.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2017-07-13 07:37:01 +1000
committerPauli <paul.dale@oracle.com>2017-07-14 07:35:17 +1000
commitc2500f658bbf378a94a76420ea7ef3d2bff17f9c (patch)
tree1c75aea7b9efb2be44b95fa62c637a8b1aab2341 /test/hmactest.c
parent1f06acc08fc73a1828cca3f162d1dcd76b83a1cf (diff)
Test cleaning and modernisation
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3917)
Diffstat (limited to 'test/hmactest.c')
-rw-r--r--test/hmactest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hmactest.c b/test/hmactest.c
index db1b7af001..e837391ae6 100644
--- a/test/hmactest.c
+++ b/test/hmactest.c
@@ -1,5 +1,5 @@
/*
- * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
@@ -232,7 +232,7 @@ static char *pt(unsigned char *md, unsigned int len)
for (i = 0; i < len; i++)
sprintf(&(buf[i * 2]), "%02x", md[i]);
- return (buf);
+ return buf;
}
# endif