summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-12-11 13:38:02 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-12-11 13:38:02 +0100
commit8e3ea8565c2915bf99f606689b5b31bee8187d2d (patch)
treed554030eaca3c690fbdb9ffed57f9915805fbe25 /src/main.c
parent016cf33ba894d477cc3d5b15ef35c4bd110744c5 (diff)
main: consistent lines
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/main.c b/src/main.c
index d4231b1..e27e619 100644
--- a/src/main.c
+++ b/src/main.c
@@ -19,12 +19,7 @@ static int __init mod_init(void)
int err;
#ifdef DEBUG
- if (!routing_table_selftest() ||
- !packet_counter_selftest() ||
- !curve25519_selftest() ||
- !chacha20poly1305_selftest() ||
- !blake2s_selftest() ||
- !siphash24_selftest())
+ if (!routing_table_selftest() || !packet_counter_selftest() || !curve25519_selftest() || !chacha20poly1305_selftest() || !blake2s_selftest() || !siphash24_selftest())
return -ENOTRECOVERABLE;
#endif
chacha20poly1305_init();