[asterisk-commits] file: branch file/7567 r116883 - /team/file/7567/channels/chan_iax2.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat May 17 14:17:32 CDT 2008


Author: file
Date: Sat May 17 14:17:31 2008
New Revision: 116883

URL: http://svn.digium.com/view/asterisk?view=rev&rev=116883
Log:
Minor tweak.

Modified:
    team/file/7567/channels/chan_iax2.c

Modified: team/file/7567/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/team/file/7567/channels/chan_iax2.c?view=diff&rev=116883&r1=116882&r2=116883
==============================================================================
--- team/file/7567/channels/chan_iax2.c (original)
+++ team/file/7567/channels/chan_iax2.c Sat May 17 14:17:31 2008
@@ -610,9 +610,9 @@
 	ast_aes_encrypt_key tdcx;
 	
 	/*! If transfer has been attempted */
-	int triedtransfer;
+	unsigned int triedtransfer:1;
 	/*! Whether media is released */
-	int mediareleased;
+	unsigned int mediareleased:1;
 	/*! If media released, the peer to send media to */
 	struct sockaddr_in media;
 




More information about the asterisk-commits mailing list