aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-13 21:07:14 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-13 21:07:14 +0000
commite5d94681c0a592fbc38cde475cc7ac6d26e528be (patch)
tree5571956d5a66cbc9dec82abc0b323daabcc14246 /channels
parentb6370471e6b4b249b9b0656a2182dd74674e5cd1 (diff)
Merged revisions 108531 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r108531 | russell | 2008-03-13 16:06:52 -0500 (Thu, 13 Mar 2008) | 18 lines Merged revisions 108530 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r108530 | russell | 2008-03-13 16:06:33 -0500 (Thu, 13 Mar 2008) | 10 lines Make a tweak that gets the LEDs on polycom phones to blink when an extension that has been subscribed to goes on hold. Otherwise, they just stay on like it does when an extension is in use. (closes issue #11263) Reported by: russell Patches: notify_hold.rev1.txt uploaded by russell (license 2) Tested by: russell ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@108532 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 bb4136efa..011ddd648 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -8797,7 +8797,7 @@ static int transmit_state_notify(struct sip_pvt *p, int state, int full, int tim
break;
case AST_EXTENSION_ONHOLD:
statestring = "confirmed";
- local_state = NOTIFY_INUSE;
+ local_state = NOTIFY_CLOSED;
pidfstate = "busy";
pidfnote = "On hold";
break;