From 33bcd8e81cee38da39f32d27a2e90e37633de062 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Fri, 5 Aug 2022 12:10:19 +0200 Subject: [PATCH] fuzz: Reformat Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- tests/fuzz/ssh_server_fuzzer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/fuzz/ssh_server_fuzzer.c b/tests/fuzz/ssh_server_fuzzer.c index 8c7913a3..2d830cfc 100644 --- a/tests/fuzz/ssh_server_fuzzer.c +++ b/tests/fuzz/ssh_server_fuzzer.c @@ -169,8 +169,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) assert(rc == 0); } rc = ssh_bind_options_set(sshbind, - SSH_BIND_OPTIONS_RSAKEY, - "/tmp/libssh_fuzzer_private_key"); + SSH_BIND_OPTIONS_RSAKEY, + "/tmp/libssh_fuzzer_private_key"); assert(rc == 0); rc = ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_CIPHERS_C_S, "none"); assert(rc == 0); @@ -197,7 +197,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) ssh_event_add_session(event, session); size_t n = 0; - while(sdata.authenticated == false || sdata.channel == NULL) { + while (sdata.authenticated == false || sdata.channel == NULL) { if (sdata.auth_attempts >= 3 || n >= 100) { break; }