Changed logging of LAPD from DLLAPDM to DLLAPD
diff --git a/include/osmocom/core/logging.h b/include/osmocom/core/logging.h
index 72e4c93..b207c1b 100644
--- a/include/osmocom/core/logging.h
+++ b/include/osmocom/core/logging.h
@@ -62,7 +62,7 @@
 
 /* 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 9dd63e7..db00331 100644
--- a/src/logging.c
+++ b/src/logging.c
@@ -72,9 +72,9 @@
 		.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,
 	},