From 332442d6c770df71e722e8511ce37f0c985bc6eb Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 26 Mar 2010 21:40:29 +0800 Subject: [PATCH] debug: ensure no overlap between LOG_FILTER_ALL and FLT_IMSI --- openbsc/src/debug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,