Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/libbb/messages.c


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/libbb/messages.c

    r2725 r3232  
    2323
    2424
    25 const char bb_msg_memory_exhausted[] ALIGN1 = "memory exhausted";
     25const char bb_msg_memory_exhausted[] ALIGN1 = "out of memory";
    2626const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'";
    2727const char bb_msg_unknown[] ALIGN1 = "(unknown)";
     
    4949const int const_int_0 = 0;
    5050
    51 #include <utmp.h>
     51#if ENABLE_FEATURE_WTMP
    5252/* This is usually something like "/var/adm/wtmp" or "/var/log/wtmp" */
    5353const char bb_path_wtmp_file[] ALIGN1 =
    54 #if defined _PATH_WTMP
     54# if defined _PATH_WTMP
    5555    _PATH_WTMP;
    56 #elif defined WTMP_FILE
     56# elif defined WTMP_FILE
    5757    WTMP_FILE;
    58 #else
    59 #error unknown path to wtmp file
     58# else
     59#  error unknown path to wtmp file
     60# endif
    6061#endif
    6162
Note: See TracChangeset for help on using the changeset viewer.