]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix bit definition for SIP_PAG2_CALL_ONHOLD. Thanks fenlander!
authorOlle Johansson <oej@edvina.net>
Fri, 10 Nov 2006 12:05:53 +0000 (12:05 +0000)
committerOlle Johansson <oej@edvina.net>
Fri, 10 Nov 2006 12:05:53 +0000 (12:05 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47414 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 2064fe6ff76edea8a4681742ce22f83f2de28dfd..b2c4c77c0c226d87e9f58fd254a75ff0ebafffdc 100644 (file)
@@ -763,8 +763,8 @@ struct sip_auth {
 #define SIP_PAGE2_T38SUPPORT_TCP       (4 << 20)       /*!< 22: T38 Fax Passthrough Support (not implemented) */
 #define SIP_PAGE2_CALL_ONHOLD          (3 << 23)       /*!< Call states */
 #define SIP_PAGE2_CALL_ONHOLD_ONEDIR   (1 << 23)       /*!< 23: One directional hold */
-#define SIP_PAGE2_CALL_ONHOLD_INACTIVE (2 << 24)       /*!< 24: Inactive  */
-#define SIP_PAGE2_RFC2833_COMPENSATE    (1 << 26)
+#define SIP_PAGE2_CALL_ONHOLD_INACTIVE (1 << 24)       /*!< 24: Inactive  */
+#define SIP_PAGE2_RFC2833_COMPENSATE    (1 << 25)
 
 #define SIP_PAGE2_FLAGS_TO_COPY \
        (SIP_PAGE2_ALLOWSUBSCRIBE | SIP_PAGE2_ALLOWOVERLAP | SIP_PAGE2_VIDEOSUPPORT | SIP_PAGE2_T38SUPPORT | SIP_PAGE2_RFC2833_COMPENSATE)