From 526e6026f554581b503e2d17896e18faf0afd8bc Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Tue, 15 Jun 2021 00:57:47 +0200 Subject: [PATCH] hsmtool: this is 'success', not 'succes' I tried to wait_for_log() on "successfully" without success :/ Signed-off-by: Antoine Poinsot --- tools/hsmtool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/hsmtool.c b/tools/hsmtool.c index a202fdfb9..03766f9bd 100644 --- a/tools/hsmtool.c +++ b/tools/hsmtool.c @@ -212,7 +212,7 @@ static int decrypt_hsm(const char *hsm_secret_path) unlink_noerr(backup); tal_free(dir); - printf("Succesfully decrypted hsm_secret, be careful now :-).\n"); + printf("Successfully decrypted hsm_secret, be careful now :-).\n"); return 0; } @@ -285,7 +285,7 @@ static int encrypt_hsm(const char *hsm_secret_path) unlink_noerr(backup); tal_free(dir); - printf("Succesfully encrypted hsm_secret. You'll now have to pass the " + printf("Successfully encrypted hsm_secret. You'll now have to pass the " "--encrypted-hsm startup option.\n"); return 0; }