diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-03-31 12:50:23 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-04-12 09:14:08 +0200 |
commit | c316c7ab737b5e849d1704032ac77d9853c310ba (patch) | |
tree | cf824ba41439f26bbfdf438d1f8e73b68315b843 /source3/lib | |
parent | ccb79b383d88b95a7916877efce0afb8a4ab6ca4 (diff) | |
download | samba-c316c7ab737b5e849d1704032ac77d9853c310ba.tar.gz samba-c316c7ab737b5e849d1704032ac77d9853c310ba.tar.bz2 samba-c316c7ab737b5e849d1704032ac77d9853c310ba.zip |
messaging: add FLAG_MSG_DBWRAP message class flag
metze
(This used to be commit ee6325495f48bab43a37d740a6eca57192004d57)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/messages.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/messages.c b/source3/lib/messages.c index 5cd575466f..ea03f8d43b 100644 --- a/source3/lib/messages.c +++ b/source3/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; |