X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbasic%2Fsyslog-util.c;h=05d51b4be53ad09f1a5c7911e961a6a73948d8e2;hp=854401aa21ab1be74c87b4c65725042c7cb25695;hb=7dd230537883c50e572752574e08c94aef5efa7f;hpb=b96ed50e3493103d075ff2ce4c3fbad8f26b2e22 diff --git a/src/basic/syslog-util.c b/src/basic/syslog-util.c index 854401aa2..05d51b4be 100644 --- a/src/basic/syslog-util.c +++ b/src/basic/syslog-util.c @@ -1,5 +1,3 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - /*** This file is part of systemd. @@ -19,15 +17,15 @@ along with systemd; If not, see . ***/ +#include #include -#include "assert.h" #include "hexdecoct.h" +#include "macro.h" #include "string-table.h" #include "syslog-util.h" -/// UNNEEDED by elogind -#if 0 +#if 0 /// UNNEEDED by elogind int syslog_parse_priority(const char **p, int *priority, bool with_facility) { int a = 0, b = 0, c = 0; int k; @@ -96,8 +94,7 @@ static const char *const log_facility_unshifted_table[LOG_NFACILITIES] = { DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(log_facility_unshifted, int, LOG_FAC(~0)); -/// UNNEEDED by elogind -#if 0 +#if 0 /// UNNEEDED by elogind bool log_facility_unshifted_is_valid(int facility) { return facility >= 0 && facility <= LOG_FAC(~0); } @@ -116,8 +113,7 @@ static const char *const log_level_table[] = { DEFINE_STRING_TABLE_LOOKUP_WITH_FALLBACK(log_level, int, LOG_DEBUG); -/// UNNEEDED by elogind -#if 0 +#if 0 /// UNNEEDED by elogind bool log_level_is_valid(int level) { return level >= 0 && level <= LOG_DEBUG; }