[svn-commits] rmudgett: branch 1.8 r282672 - /branches/1.8/channels/sig_pri.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Aug 18 10:28:31 CDT 2010


Author: rmudgett
Date: Wed Aug 18 10:28:27 2010
New Revision: 282672

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=282672
Log:
Use the correct type for aoce_delayhangup bit field.

Modified:
    branches/1.8/channels/sig_pri.h

Modified: branches/1.8/channels/sig_pri.h
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/sig_pri.h?view=diff&rev=282672&r1=282671&r2=282672
==============================================================================
--- branches/1.8/channels/sig_pri.h (original)
+++ branches/1.8/channels/sig_pri.h Wed Aug 18 10:28:27 2010
@@ -295,8 +295,8 @@
 	int fds[SIG_PRI_NUM_DCHANS];					/*!< FD's for d-channels */
 
 #if defined(HAVE_PRI_AOC_EVENTS)
-	int aoc_passthrough_flag;          /*!< Represents what AOC messages (S,D,E) are allowed to pass-through */
-	int aoce_delayhangup:1;            /*!< defines whether the aoce_delayhangup option is enabled or not */
+	int aoc_passthrough_flag;						/*!< Represents what AOC messages (S,D,E) are allowed to pass-through */
+	unsigned int aoce_delayhangup:1;				/*!< defines whether the aoce_delayhangup option is enabled or not */
 #endif	/* defined(HAVE_PRI_AOC_EVENTS) */
 
 #if defined(HAVE_PRI_SERVICE_MESSAGES)




More information about the svn-commits mailing list