aboutsummaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2016-07-04 07:23:44 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2016-07-09 11:27:24 +0200
commit64c829909bc5b73a7765272ad07cf6465762aeac (patch)
tree0c3f7f60620b5fb1e7768539a875bab62c21494b /src/common
parent62b3712ce56e86d73ddade1d15d058fcc3205587 (diff)
NMT / DMS: User data facility support (required for SMS)
Diffstat (limited to 'src/common')
-rw-r--r--src/common/debug.c1
-rw-r--r--src/common/debug.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/debug.c b/src/common/debug.c
index 296b189..08e8620 100644
--- a/src/common/debug.c
+++ b/src/common/debug.c
@@ -50,6 +50,7 @@ struct debug_cat {
{ "mncc", "\033[1;32m" },
{ "database", "\033[0;33m" },
{ "transaction", "\033[0;32m" },
+ { "dms", "\033[0;33m" },
{ NULL, NULL }
};
diff --git a/src/common/debug.h b/src/common/debug.h
index a6c07b9..8ca9f78 100644
--- a/src/common/debug.h
+++ b/src/common/debug.h
@@ -17,6 +17,7 @@
#define DMNCC 10
#define DDB 11
#define DTRANS 12
+#define DDMS 13
#define PDEBUG(cat, level, fmt, arg...) _printdebug(__FILE__, __FUNCTION__, __LINE__, cat, level, fmt, ## arg)
void _printdebug(const char *file, const char *function, int line, int cat, int level, const char *fmt, ...);