From cf7577d4171d517690e95e7225979bfde32fce7c Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 25 Jun 2006 22:59:31 +0000 Subject: Missed one. Based on suggestions from Erik Hovland. --- loginutils/getty.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'loginutils/getty.c') diff --git a/loginutils/getty.c b/loginutils/getty.c index e68f2cd..bb9ed0d 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -808,14 +808,14 @@ static void update_utmp(char *line) } else { /* some inits don't initialize utmp... */ memset(&ut, 0, sizeof(ut)); - strncpy(ut.ut_id, line + 3, sizeof(ut.ut_id)); + safe_strncpy(ut.ut_id, line + 3, sizeof(ut.ut_id)); } /*endutent(); */ - strncpy(ut.ut_user, "LOGIN", sizeof(ut.ut_user)); - strncpy(ut.ut_line, line, sizeof(ut.ut_line)); + strcpy(ut.ut_user, "LOGIN"); + safe_strncpy(ut.ut_line, line, sizeof(ut.ut_line)); if (fakehost) - strncpy(ut.ut_host, fakehost, sizeof(ut.ut_host)); + safe_strncpy(ut.ut_host, fakehost, sizeof(ut.ut_host)); time(&t); ut.ut_time = t; ut.ut_type = LOGIN_PROCESS; -- cgit v1.1