summaryrefslogtreecommitdiff
path: root/tests/openssl.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/openssl.c')
-rw-r--r--tests/openssl.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/openssl.c b/tests/openssl.c
index 604d58d002..5dff1e32f4 100644
--- a/tests/openssl.c
+++ b/tests/openssl.c
@@ -20,7 +20,7 @@
*/
#ifdef HAVE_CONFIG_H
-# include <config.h>
+#include <config.h>
#endif
#include <stdio.h>
@@ -49,8 +49,10 @@ void doit(void)
MD5_Update(&c, "abc", 3);
MD5_Final(&(md[0]), &c);
- if (memcmp(md, "\x90\x01\x50\x98\x3c\xd2\x4f\xb0"
- "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72", sizeof(md)) != 0) {
+ if (memcmp(md,
+ "\x90\x01\x50\x98\x3c\xd2\x4f\xb0"
+ "\xd6\x96\x3f\x7d\x28\xe1\x7f\x72",
+ sizeof(md)) != 0) {
hexprint(md, sizeof(md));
fail("MD5 failure\n");
} else if (debug)