aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormnicholson <mnicholson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-30 23:15:17 +0000
committermnicholson <mnicholson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-09-30 23:15:17 +0000
commitc3773d8282a1b44089fa968cb35024333a5b9f33 (patch)
treed1c24b5f9682598e2b8a897383bf400c5ee50b7d /channels
parent0c96a4e4e3db3c08cb62729527baa92559339754 (diff)
Make portinuri a bitfield.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@221489 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index f3292a243..d69d4c6d5 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1162,7 +1162,7 @@ struct sip_peer {
ast_group_t pickupgroup; /*!< Pickup group */
struct sockaddr_in addr; /*!< IP address of peer */
int maxcallbitrate; /*!< Maximum Bitrate for a video call */
- int portinuri; /*!< Whether the port should be included in the URI */
+ int portinuri:1; /*!< Whether the port should be included in the URI */
/* Qualification */
struct sip_pvt *call; /*!< Call pointer */