From: Joshua Colp Date: Thu, 11 Dec 2008 15:05:49 +0000 (+0000) Subject: When a device registers to use it is entirely possible that they may be in use, so... X-Git-Tag: 1.6.2.0-beta1~660 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a4a9815fe2cbcdc9c2db3e240f5faaceab8a17c9;p=thirdparty%2Fasterisk.git When a device registers to use it is entirely possible that they may be in use, so tell the core that we don't know the devstate and have it ask us for it. (closes issue #13525) Reported by: pj git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@162997 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 0c5752add2..251e05aea4 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -11792,7 +11792,7 @@ static enum check_auth_result register_verify(struct sip_pvt *p, struct sockaddr } } if (!res) { - ast_devstate_changed(AST_DEVICE_NOT_INUSE, "SIP/%s", peer->name); + ast_devstate_changed(AST_DEVICE_UNKNOWN, "SIP/%s", peer->name); } if (res < 0) { switch (res) {