From 6c35c7c97628cb81eb26c2a059b0dde2879d91aa Mon Sep 17 00:00:00 2001 From: "\"Vladimir N. Oleynik\"" Date: Wed, 12 Oct 2005 15:34:25 +0000 Subject: usage bb_dev_null --- init/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'init/init.c') diff --git a/init/init.c b/init/init.c index 166f526e0..96c704670 100644 --- a/init/init.c +++ b/init/init.c @@ -353,7 +353,7 @@ static void console_init(void) #ifndef CONFIG_SYSLOGD log_console = #endif - safe_strncpy(console, "/dev/null", sizeof(console)); + safe_strncpy(console, bb_dev_null, sizeof(console)); } else { s = getenv("TERM"); /* check for serial console */ @@ -834,7 +834,7 @@ static void new_init_action(int action, const char *command, const char *cons) /* do not run entries if console device is not available */ if (access(cons, R_OK | W_OK)) return; - if (strcmp(cons, "/dev/null") == 0 && (action & ASKFIRST)) + if (strcmp(cons, bb_dev_null) == 0 && (action & ASKFIRST)) return; new_action = calloc((size_t) (1), sizeof(struct init_action)); -- cgit v1.2.3