Module: kamailio Branch: master Commit: 0dc595862baa62535efc7519330514aa30b552b1 URL: https://github.com/kamailio/kamailio/commit/0dc595862baa62535efc7519330514aa30b552b1
Author: Daniel-Constantin Mierla <[email protected]> Committer: GitHub <[email protected]> Date: 2018-04-16T19:19:22+02:00 Merge pull request #1502 from snen/dialog_fix_dmq_flag_value dialog: typo fix for DLG_IFLAG_DMQ_SYNC flag value --- Modified: src/modules/dialog/dlg_hash.h --- Diff: https://github.com/kamailio/kamailio/commit/0dc595862baa62535efc7519330514aa30b552b1.diff Patch: https://github.com/kamailio/kamailio/commit/0dc595862baa62535efc7519330514aa30b552b1.patch --- diff --git a/src/modules/dialog/dlg_hash.h b/src/modules/dialog/dlg_hash.h index 91eb129d67..85fdc6cb83 100644 --- a/src/modules/dialog/dlg_hash.h +++ b/src/modules/dialog/dlg_hash.h @@ -78,7 +78,7 @@ #define DLG_IFLAG_TIMER_NORESET (1<<3) /*!< don't reset dialog timers on in-dialog messages reception */ #define DLG_IFLAG_CSEQ_DIFF (1<<4) /*!< CSeq changed in dialog */ #define DLG_IFLAG_PRACK (1<<5) /*!< PRACK was routed during initial state */ -#define DLG_IFLAG_DMQ_SYNC (1<<5) /*!< sync this dialog via dmq DMQ*/ +#define DLG_IFLAG_DMQ_SYNC (1<<6) /*!< sync this dialog via dmq DMQ*/ #define DLG_CALLER_LEG 0 /*!< attribute that belongs to a caller leg */ #define DLG_CALLEE_LEG 1 /*!< attribute that belongs to a callee leg */ _______________________________________________ Kamailio (SER) - Development Mailing List [email protected] https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev
