summaryrefslogtreecommitdiffstats
path: root/source/lib/messages.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-03-31 12:50:23 +0200
committerKarolin Seeger <kseeger@samba.org>2008-04-13 13:29:50 +0200
commit338734dd69b88a68f37869faf3c0dd8376374a46 (patch)
tree570d701a9b9e698d62b9a036ca0735e9a2dab50c /source/lib/messages.c
parent1a1515f333e6750efa31562b2bd7be3687c96350 (diff)
downloadsamba-338734dd69b88a68f37869faf3c0dd8376374a46.tar.gz
samba-338734dd69b88a68f37869faf3c0dd8376374a46.tar.xz
samba-338734dd69b88a68f37869faf3c0dd8376374a46.zip
messaging: add FLAG_MSG_DBWRAP message class flag
metze (cherry picked from commit ee6325495f48bab43a37d740a6eca57192004d57)
Diffstat (limited to 'source/lib/messages.c')
-rw-r--r--source/lib/messages.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/lib/messages.c b/source/lib/messages.c
index 5cd575466fa..ea03f8d43b5 100644
--- a/source/lib/messages.c
+++ b/source/lib/messages.c
@@ -162,6 +162,8 @@ bool message_send_all(struct messaging_context *msg_ctx,
msg_all.msg_flag = FLAG_MSG_PRINT_GENERAL;
else if (msg_type > 3000 && msg_type < 4000)
msg_all.msg_flag = FLAG_MSG_SMBD;
+ else if (msg_type > 4000 && msg_type < 5000)
+ msg_all.msg_flag = FLAG_MSG_DBWRAP;
else
return False;