summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@nuedel.(none)>2011-09-26 11:22:21 +0200
committerHarald Welte <laforge@gnumonks.org>2011-10-10 08:38:58 +0200
commit8a996b4844f8f89c16ce5062c74942d57f6f73b4 (patch)
tree39af3503adab1ad5b9cec005239545101f891701
parentf84571d0f46845285b810a48679a554fb68ec278 (diff)
Changed logging of LAPD from DLLAPDM to DLLAPD
-rw-r--r--include/osmocom/core/logging.h2
-rw-r--r--src/logging.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/include/osmocom/core/logging.h b/include/osmocom/core/logging.h
index 72e4c93e..b207c1b4 100644
--- a/include/osmocom/core/logging.h
+++ b/include/osmocom/core/logging.h
@@ -62,7 +62,7 @@ void logp(int subsys, char *file, int line, int cont, const char *format, ...) _
/* logging levels defined by the library itself */
#define DLGLOBAL -1
-#define DLLAPDM -2
+#define DLLAPD -2
#define DLINP -3
#define DLMUX -4
#define DLMI -5
diff --git a/src/logging.c b/src/logging.c
index 9dd63e73..db00331a 100644
--- a/src/logging.c
+++ b/src/logging.c
@@ -72,9 +72,9 @@ static const struct log_info_cat internal_cat[OSMO_NUM_DLIB] = {
.loglevel = LOGL_NOTICE,
.enabled = 1,
},
- [INT2IDX(DLLAPDM)] = { /* -2 becomes 1 */
- .name = "DLLAPDM",
- .description = "LAPDm in libosmogsm",
+ [INT2IDX(DLLAPD)] = { /* -2 becomes 1 */
+ .name = "DLLAPD",
+ .description = "LAPD in libosmogsm",
.loglevel = LOGL_NOTICE,
.enabled = 1,
},