source: MondoRescue/branches/3.3/mindi-busybox/libbb/logenv.c@ 3865

Last change on this file since 3865 was 3621, checked in by Bruno Cornec, 10 years ago

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

  • Property svn:eol-style set to native
File size: 480 bytes
Line 
1/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) 2014 by Fugro Intersite B.V. <m.stam@fugro.nl>
6 *
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */
9#include "libbb.h"
10
11void FAST_FUNC bb_logenv_override(void)
12{
13 const char* mode = getenv("LOGGING");
14
15 if (!mode)
16 return;
17
18 if (strcmp(mode, "none") == 0)
19 logmode = LOGMODE_NONE;
20#if ENABLE_FEATURE_SYSLOG
21 else if (strcmp(mode, "syslog") == 0)
22 logmode = LOGMODE_SYSLOG;
23#endif
24}
Note: See TracBrowser for help on using the repository browser.