aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/debug.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-26 21:40:29 +0800
committerHarald Welte <laforge@gnumonks.org>2010-03-26 21:40:29 +0800
commit332442d6c770df71e722e8511ce37f0c985bc6eb (patch)
treeaed0ad9174617d777021c29fcedc9385d99a7f18 /openbsc/src/debug.c
parent71ba85e4aff1374bee0316cab9a627d03ba1eee5 (diff)
debug: ensure no overlap between LOG_FILTER_ALL and FLT_IMSI
Diffstat (limited to 'openbsc/src/debug.c')
-rw-r--r--openbsc/src/debug.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/debug.c b/openbsc/src/debug.c
index 5355bf4ed..a55d79013 100644
--- a/openbsc/src/debug.c
+++ b/openbsc/src/debug.c
@@ -153,7 +153,8 @@ enum log_ctxt {
};
enum log_filter {
- FLT_IMSI,
+ _FLT_ALL = LOG_FILTER_ALL, /* libosmocore */
+ FLT_IMSI = 1,
};
static int filter_fn(const struct log_context *ctx,