From 426901b891c15ccac7d1d8fbcbb0cab50d27ed8b Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 7 Aug 2022 18:41:57 +0100 Subject: [PATCH] Formatting: another handful of mis-indented labels. These were indented 2 spaces _further_ than the surrounding code, instead of 2 spaces less. My bulk-reindentation the other day didn't detect them because apparently my Emacs configuration can make this mistake all by itself, so it thought they were right! --- pageant.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pageant.c b/pageant.c index 269dd005..455e434f 100644 --- a/pageant.c +++ b/pageant.c @@ -1052,7 +1052,7 @@ static PageantAsyncOp *pageant_make_op( pageant_client_log(pc, reqid, "reply: SSH1_AGENT_RSA_RESPONSE"); - challenge1_cleanup: + challenge1_cleanup: if (response) mp_free(response); mp_free(challenge); @@ -1165,7 +1165,7 @@ static PageantAsyncOp *pageant_make_op( fail("key already present"); } - add1_cleanup: + add1_cleanup: if (key) { freersakey(key); sfree(key); @@ -1226,7 +1226,7 @@ static PageantAsyncOp *pageant_make_op( fail("key already present"); } - add2_cleanup: + add2_cleanup: if (key) { if (key->key) ssh_key_free(key->key);