messages.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. #include "libbb.h"
  8. #ifndef BB_EXTRA_VERSION
  9. #define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
  10. #else
  11. #define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
  12. #endif
  13. const char BB_BANNER[] = BANNER;
  14. const char bb_msg_full_version[] = BANNER " multi-call binary";
  15. const char bb_msg_memory_exhausted[] = "memory exhausted";
  16. const char bb_msg_invalid_date[] = "invalid date '%s'";
  17. const char bb_msg_write_error[] = "write error";
  18. const char bb_msg_read_error[] = "read error";
  19. const char bb_msg_unknown[] = "(unknown)";
  20. const char bb_msg_can_not_create_raw_socket[] = "can't create raw socket";
  21. const char bb_msg_perm_denied_are_you_root[] = "permission denied. (are you root?)";
  22. const char bb_msg_requires_arg[] = "%s requires an argument";
  23. const char bb_msg_invalid_arg[] = "invalid argument '%s' to '%s'";
  24. const char bb_msg_standard_input[] = "standard input";
  25. const char bb_msg_standard_output[] = "standard output";
  26. const char bb_str_default[] = "default";
  27. const char bb_path_passwd_file[] = "/etc/passwd";
  28. const char bb_path_shadow_file[] = "/etc/shadow";
  29. const char bb_path_group_file[] = "/etc/group";
  30. const char bb_path_gshadow_file[] = "/etc/gshadow";
  31. const char bb_path_nologin_file[] = "/etc/nologin";
  32. const char bb_path_securetty_file[] = "/etc/securetty";
  33. const char bb_path_motd_file[] = "/etc/motd";
  34. const char bb_default_login_shell[] = LIBBB_DEFAULT_LOGIN_SHELL;
  35. const char bb_dev_null[] = "/dev/null";
  36. #include <utmp.h>
  37. /* This is usually something like "/var/adm/wtmp" or "/var/log/wtmp" */
  38. const char bb_path_wtmp_file[] =
  39. #if defined _PATH_WTMP
  40. _PATH_WTMP;
  41. #elif defined WTMP_FILE
  42. WTMP_FILE;
  43. #else
  44. # error unknown path to wtmp file
  45. #endif
  46. char bb_common_bufsiz1[BUFSIZ+1];