From 3d4219014ae5f5a6553423994ff5ccd1d490a6fc Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 19 Nov 2018 10:54:26 -0600 Subject: Eduardas Meile reported "The -Werror=format-security flag is applied by default in Yocto 2.6 Thud release" and identified several error_exit() and friends that should use the _raw versions. --- toys/pending/getty.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'toys/pending/getty.c') diff --git a/toys/pending/getty.c b/toys/pending/getty.c index 25d04eaa..51b58962 100644 --- a/toys/pending/getty.c +++ b/toys/pending/getty.c @@ -278,8 +278,7 @@ static void utmp_entry(void) strlen("/dev/"), UT_LINESIZE); time((time_t *)&entry.ut_time); xstrncpy(entry.ut_user, "LOGIN", UT_NAMESIZE); - if (strlen(TT.host_str) > UT_HOSTSIZE) - perror_msg(utmperr); + if (strlen(TT.host_str) > UT_HOSTSIZE) perror_msg_raw(utmperr); else xstrncpy(entry.ut_host, TT.host_str, UT_HOSTSIZE); setutent(); pututline(&entry); @@ -287,8 +286,7 @@ static void utmp_entry(void) } xstrncpy(entry.ut_line, ttyname(STDIN_FILENO) + strlen("/dev/"), UT_LINESIZE); xstrncpy(entry.ut_user, "LOGIN", UT_NAMESIZE); - if (strlen(TT.host_str) > UT_HOSTSIZE) - perror_msg(utmperr); + if (strlen(TT.host_str) > UT_HOSTSIZE) perror_msg_raw(utmperr); else xstrncpy(entry.ut_host, TT.host_str, UT_HOSTSIZE); time((time_t *)&entry.ut_time); setutent(); -- cgit v1.2.3