aboutsummaryrefslogtreecommitdiff
path: root/libbb/messages.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/messages.c')
-rw-r--r--libbb/messages.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/libbb/messages.c b/libbb/messages.c
new file mode 100644
index 000000000..c640faf5b
--- /dev/null
+++ b/libbb/messages.c
@@ -0,0 +1,53 @@
1/* vi: set sw=4 ts=4: */
2/*
3 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4 *
5 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
6 */
7
8#include "libbb.h"
9
10#ifndef BB_EXTRA_VERSION
11#define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
12#else
13#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
14#endif
15const char BB_BANNER[] = BANNER;
16const char bb_msg_full_version[] = BANNER " multi-call binary";
17
18const char bb_msg_memory_exhausted[] = "memory exhausted";
19const char bb_msg_invalid_date[] = "invalid date '%s'";
20const char bb_msg_write_error[] = "write error";
21const char bb_msg_read_error[] = "read error";
22const char bb_msg_unknown[] = "(unknown)";
23const char bb_msg_can_not_create_raw_socket[] = "can't create raw socket";
24const char bb_msg_perm_denied_are_you_root[] = "permission denied. (are you root?)";
25const char bb_msg_requires_arg[] = "%s requires an argument";
26const char bb_msg_invalid_arg[] = "invalid argument '%s' to '%s'";
27const char bb_msg_standard_input[] = "standard input";
28const char bb_msg_standard_output[] = "standard output";
29
30const char bb_str_default[] = "default";
31
32const char bb_path_passwd_file[] = "/etc/passwd";
33const char bb_path_shadow_file[] = "/etc/shadow";
34const char bb_path_group_file[] = "/etc/group";
35const char bb_path_gshadow_file[] = "/etc/gshadow";
36const char bb_path_nologin_file[] = "/etc/nologin";
37const char bb_path_securetty_file[] = "/etc/securetty";
38const char bb_path_motd_file[] = "/etc/motd";
39const char bb_default_login_shell[] = LIBBB_DEFAULT_LOGIN_SHELL;
40const char bb_dev_null[] = "/dev/null";
41
42#include <utmp.h>
43/* This is usually something like "/var/adm/wtmp" or "/var/log/wtmp" */
44const char bb_path_wtmp_file[] =
45#if defined _PATH_WTMP
46_PATH_WTMP;
47#elif defined WTMP_FILE
48WTMP_FILE;
49#else
50# error unknown path to wtmp file
51#endif
52
53char bb_common_bufsiz1[BUFSIZ+1];