aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-13 21:06:33 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-13 21:06:33 +0000
commit89a1622c3cce158491be6cf1d4eca05a51534f4f (patch)
tree7c1c94e20ef373df981430530d44e7c42e4f14c9
parentafbeb082ab6ee97eea332d4af25c75b02f965489 (diff)
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.4@108530 f38db490-d61c-443f-a65b-d21fe96a405b
-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 9e3b89760..a3ffab986 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -7185,7 +7185,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;