summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2007-08-30 15:36:43 +0000
committerMark Michelson <mmichelson@digium.com>2007-08-30 15:36:43 +0000
commit2d828f3308777e4efb23e67fe11a488278272bc8 (patch)
treeed26f14b1351970e46a41f546ca848344dd5118b /apps
parent4b2095bdd37d8c521bd471ee469af1d87dde1581 (diff)
Merged revisions 81381 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r81381 | mmichelson | 2007-08-30 10:35:51 -0500 (Thu, 30 Aug 2007) | 3 lines Changed some manager event messages to reflect whether a queue member is a realtime member or not ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81382 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index b797b3700..c879aedb7 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -601,7 +601,7 @@ static void *handle_statechange(struct statechange *sc)
"LastCall: %d\r\n"
"Status: %d\r\n"
"Paused: %d\r\n",
- q->name, cur->interface, cur->membername, cur->dynamic ? "dynamic" : "static",
+ q->name, cur->interface, cur->membername, cur->dynamic ? "dynamic" : cur->realtime ? "realtime" : "static",
cur->penalty, cur->calls, (int)cur->lastcall, cur->status, cur->paused);
}
}
@@ -1657,7 +1657,7 @@ static int update_status(struct call_queue *q, struct member *member, int status
"LastCall: %d\r\n"
"Status: %d\r\n"
"Paused: %d\r\n",
- q->name, cur->interface, cur->membername, cur->dynamic ? "dynamic" : "static",
+ q->name, cur->interface, cur->membername, cur->dynamic ? "dynamic" : cur->realtime ? "realtime": "static",
cur->penalty, cur->calls, (int)cur->lastcall, cur->status, cur->paused);
}
}