aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 07:03:42 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-07 07:03:42 +0000
commita3fbd196220cc14eefdfba8b1a0a2c6723000373 (patch)
tree12ab84631fa5ed08111f2d5814ba409dc3ca2615 /channels
parented6fd36fd8bb684f48135c1a1309974d3e757900 (diff)
eliminate some pointer signedness warnings
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@37291 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index de31ce0a5..10fa7462f 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -507,9 +507,9 @@ static int global_allowguest; /*!< allow unauthenticated users/peers to connect
static int global_allowsubscribe; /*!< Flag for disabling ALL subscriptions, this is FALSE only if all peers are FALSE
the global setting is in globals_flags[1] */
static int global_mwitime; /*!< Time between MWI checks for peers */
-static int global_tos_sip; /*!< IP type of service for SIP packets */
-static int global_tos_audio; /*!< IP type of service for audio RTP packets */
-static int global_tos_video; /*!< IP type of service for video RTP packets */
+static unsigned int global_tos_sip; /*!< IP type of service for SIP packets */
+static unsigned int global_tos_audio; /*!< IP type of service for audio RTP packets */
+static unsigned int global_tos_video; /*!< IP type of service for video RTP packets */
static int compactheaders; /*!< send compact sip headers */
static int recordhistory; /*!< Record SIP history. Off by default */
static int dumphistory; /*!< Dump history to verbose before destroying SIP dialog */
@@ -15430,7 +15430,7 @@ static int reload_config(enum channelreloadreason reason)
int auto_sip_domains = FALSE;
struct sockaddr_in old_bindaddr = bindaddr;
int registry_count = 0, peer_count = 0, user_count = 0;
- int temp_tos = 0;
+ unsigned int temp_tos = 0;
struct ast_flags debugflag = {0};
cfg = ast_config_load(config);