aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-03 17:12:52 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-03 17:12:52 +0000
commit4d4eccc29669653c7c97eaf6461336dd2a67a1c8 (patch)
tree55bed6c0aa82d3f6bd4d8a3ef1fc0692d3b0781d /channels
parenta8d11b3ee955628c5f061e16b947f513b3c21442 (diff)
user.conf entries in SIP were not having their peer type set.
(closes issue #16120) Reported by: jsmith git-svn-id: http://svn.digium.com/svn/asterisk/trunk@227238 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 092d82f78..f669513b6 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -25908,6 +25908,8 @@ static int reload_config(enum channelreloadreason reason)
if (ast_true(hassip) || (!hassip && genhassip)) {
peer = build_peer(cat, gen, ast_variable_browse(ucfg, cat), 0, 0);
if (peer) {
+ /* user.conf entries are always of type friend */
+ peer->type = SIP_TYPE_USER | SIP_TYPE_PEER;
ao2_t_link(peers, peer, "link peer into peer table");
if ((peer->type & SIP_TYPE_PEER) && peer->addr.sin_addr.s_addr) {
ao2_t_link(peers_by_ip, peer, "link peer into peers_by_ip table");