aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-25 09:28:28 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-25 09:28:28 +0000
commita49dc0d2ac8bbef33c7f3312a7721be7f9949bd8 (patch)
tree0fbc349fd311b67f664063fd6c7c538d406b916a /channels
parente007a1cb53ed9f04e897ffad2ef3ec7744debaf9 (diff)
Not having a HINT is not an ERROR. In 1.4 and future releases, you can disable
subscription support totally or per peer in sip.conf with allowsubscribe = yes | no git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48002 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 1a1abf2e0..2485df85c 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -14203,7 +14203,7 @@ static int handle_request_subscribe(struct sip_pvt *p, struct sip_request *req,
if ((firststate = ast_extension_state(NULL, p->context, p->exten)) < 0) {
- ast_log(LOG_ERROR, "Got SUBSCRIBE for extension %s@%s from %s, but there is no hint for that extension\n", p->exten, p->context, ast_inet_ntoa(p->sa.sin_addr));
+ ast_log(LOG_NOTICE, "Got SUBSCRIBE for extension %s@%s from %s, but there is no hint for that extension.\n", p->exten, p->context, ast_inet_ntoa(p->sa.sin_addr));
transmit_response(p, "404 Not found", req);
ast_set_flag(&p->flags[0], SIP_NEEDDESTROY);
return 0;