From 01c5b787947aeaffc7e56000827e3edefa357c59 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sat, 23 Jun 2012 09:02:36 +0200 Subject: [PATCH] agetty: use configured run state directory Signed-off-by: Sami Kerola --- include/pathnames.h | 1 + term-utils/agetty.c | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/pathnames.h b/include/pathnames.h index ba8de01110..d0ed7a1584 100644 --- a/include/pathnames.h +++ b/include/pathnames.h @@ -63,6 +63,7 @@ /* used in term-utils/agetty.c */ #define _PATH_ISSUE "/etc/issue" +#define _PATH_NUMLOCK_ON _PATH_LOCALSTATEDIR "/numlock-on" #define _PATH_LOGINDEFS "/etc/login.defs" diff --git a/term-utils/agetty.c b/term-utils/agetty.c index 7514015f65..5c445df5bd 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -1259,9 +1259,8 @@ static void do_prompt(struct options *op, struct termios *tp) if (ioctl(STDIN_FILENO, KDGKBLED, &kb) == 0) { char hint[256] = { '\0' }; int nl = 0; - struct stat st; - if (stat("/var/run/numlock-on", &st) == 0) + if (access(_PATH_NUMLOCK_ON, F_OK) == 0) nl = 1; if (nl && (kb & 0x02) == 0) -- 2.47.3