From 30d5ab431373d5d8b5b026dacce19eac9f0e7f06 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Thu, 24 Aug 2023 11:14:15 +0200 Subject: [PATCH] pki: Fix indentation Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- src/pki.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pki.c b/src/pki.c index b07a5f67..f43f835a 100644 --- a/src/pki.c +++ b/src/pki.c @@ -1163,8 +1163,9 @@ int pki_import_privkey_buffer(enum ssh_keytypes_e type, ssh_log_hexdump("n", ssh_string_data(n), ssh_string_len(n)); ssh_log_hexdump("e", ssh_string_data(e), ssh_string_len(e)); ssh_log_hexdump("d", ssh_string_data(d), ssh_string_len(d)); - ssh_log_hexdump("iqmp", ssh_string_data(iqmp), - ssh_string_len(iqmp)); + ssh_log_hexdump("iqmp", + ssh_string_data(iqmp), + ssh_string_len(iqmp)); ssh_log_hexdump("p", ssh_string_data(p), ssh_string_len(p)); ssh_log_hexdump("q", ssh_string_data(q), ssh_string_len(q)); #endif /* DEBUG_CRYPTO */