From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 11/13] installer: Pass correct length of hostname to sethostname() Date: Fri, 05 Apr 2024 12:59:40 +0000 Message-ID: <20240405125942.1803058-11-michael.tremer@ipfire.org> In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7038141276610892007==" List-Id: --===============7038141276610892007== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Michael Tremer --- src/installer/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/main.c b/src/installer/main.c index ecfcff2ec..6253df550 100644 --- a/src/installer/main.c +++ b/src/installer/main.c @@ -377,7 +377,7 @@ int main(int argc, char *argv[]) { FILE *copying; setlocale(LC_ALL, ""); - sethostname(DISTRO_SNAME, 10); + sethostname(DISTRO_SNAME, strlen(DISTRO_SNAME)); /* Log file/terminal stuff. */ if (argc >= 2) { -- 2.39.2 --===============7038141276610892007==--