Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/sysklogd/logger.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/sysklogd/logger.c

    r3232 r3621  
    77 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
    88 */
     9//config:config LOGGER
     10//config:   bool "logger"
     11//config:   default y
     12//config:   select FEATURE_SYSLOG
     13//config:   help
     14//config:       The logger utility allows you to send arbitrary text
     15//config:       messages to the system log (i.e. the 'syslogd' utility) so
     16//config:       they can be logged. This is generally used to help locate
     17//config:       problems that occur within programs and scripts.
     18
     19//applet:IF_LOGGER(APPLET(logger, BB_DIR_USR_BIN, BB_SUID_DROP))
     20
     21//kbuild:lib-$(CONFIG_LOGGER) += syslogd_and_logger.o
    922
    1023//usage:#define logger_trivial_usage
     
    87100    int i = 0;
    88101
     102    setup_common_bufsiz();
     103
    89104    /* Fill out the name string early (may be overwritten later) */
    90105    str_t = uid2uname_utoa(geteuid());
Note: See TracChangeset for help on using the changeset viewer.