summaryrefslogtreecommitdiffstats
path: root/src/gb/gprs_ns_vty.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-02-23 18:03:28 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-02-23 18:08:12 +0100
commit8b86cd76cf6e5254f888276d73f94bb0bfcee03b (patch)
tree9d2c065758f49163a934a1f89b2f74018ec9cfff /src/gb/gprs_ns_vty.c
parent492e1808b0adede71be81cf0ad9d112dc39255a5 (diff)
logging.h: fixup: shorter names for LOGGING_FILTER_* and LOGGING_CTX_*
My recent logging patch was merged to master a bit too soon. Accomodate the request for naming that matches the general "LOG" prefix instead of "LOGGING". libosmocore will not be backwards-compatible with the few commits from change-id I5c343630020f4b108099696fd96c2111614c8067 up to this one. This and following commits are backwards compatible with those before that short window. See also: * openbsc change-id Ib2ec5e4884aa90f48051ee2f832af557aa525991 * osmo-pcu change-id I4db4a668f2be07f3d55f848d38d1b490d8a7a685 Change-Id: I424fe3f12ea620338902b2bb8230544bde3f1a93
Diffstat (limited to 'src/gb/gprs_ns_vty.c')
-rw-r--r--src/gb/gprs_ns_vty.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gb/gprs_ns_vty.c b/src/gb/gprs_ns_vty.c
index 2026c7a5..6de74dd1 100644
--- a/src/gb/gprs_ns_vty.c
+++ b/src/gb/gprs_ns_vty.c
@@ -61,11 +61,11 @@ static void log_set_nsvc_filter(struct log_target *target,
struct gprs_nsvc *nsvc)
{
if (nsvc) {
- target->filter_map |= (1 << LOGGING_FILTER_GB_NSVC);
- target->filter_data[LOGGING_FILTER_GB_NSVC] = nsvc;
- } else if (target->filter_data[LOGGING_FILTER_GB_NSVC]) {
- target->filter_map = ~(1 << LOGGING_FILTER_GB_NSVC);
- target->filter_data[LOGGING_FILTER_GB_NSVC] = NULL;
+ target->filter_map |= (1 << LOG_FLT_GB_NSVC);
+ target->filter_data[LOG_FLT_GB_NSVC] = nsvc;
+ } else if (target->filter_data[LOG_FLT_GB_NSVC]) {
+ target->filter_map = ~(1 << LOG_FLT_GB_NSVC);
+ target->filter_data[LOG_FLT_GB_NSVC] = NULL;
}
}