From 971637c47db4044c9b50c140abf7ecb7c0e7fcf2 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 26 Sep 2025 09:43:45 +0200 Subject: [PATCH] firstboot: get rid of pointless strjoina() --- src/firstboot/firstboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 71fc8539d8b..6a2e8ee2841 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -745,8 +745,8 @@ static int prompt_root_password(int rfd, sd_varlink **mute_console_link) { print_welcome(rfd, mute_console_link); - msg1 = strjoina("Please enter the new root password (empty to skip):"); - msg2 = strjoina("Please enter the new root password again:"); + msg1 = "Please enter the new root password (empty to skip):"; + msg2 = "Please enter the new root password again:"; suggest_passwords(); -- 2.47.3