From: Lennart Poettering Date: Fri, 26 Sep 2025 07:43:45 +0000 (+0200) Subject: firstboot: get rid of pointless strjoina() X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F39101%2Fhead;p=thirdparty%2Fsystemd.git firstboot: get rid of pointless strjoina() --- 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();