dect
/
asterisk
Archived
13
0
Fork 0

use Calendar: instead of Calendar/ for devstate

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@223992 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
twilson 2009-10-13 22:14:22 +00:00
parent 378d8e4bff
commit 2f25cd5cc8
1 changed files with 4 additions and 4 deletions

View File

@ -524,9 +524,9 @@ static struct ast_calendar_event *destroy_event(struct ast_calendar_event *event
* but haven't hit the end event yet, go ahead and set the devicestate to the current busy status */
if (event->bs_start_sched < 0 && event->bs_end_sched >= 0) {
if (!calendar_is_busy(event->owner)) {
ast_devstate_changed(AST_DEVICE_NOT_INUSE, "Calendar/%s", event->owner->name);
ast_devstate_changed(AST_DEVICE_NOT_INUSE, "Calendar:%s", event->owner->name);
} else {
ast_devstate_changed(AST_DEVICE_BUSY, "Calendar/%s", event->owner->name);
ast_devstate_changed(AST_DEVICE_BUSY, "Calendar:%s", event->owner->name);
}
}
@ -767,9 +767,9 @@ static int calendar_devstate_change(const void *data)
/* We can have overlapping events, so ignore the event->busy_state and check busy state
* based on all events in the calendar */
if (!calendar_is_busy(event->owner)) {
ast_devstate_changed(AST_DEVICE_NOT_INUSE, "Calendar/%s", event->owner->name);
ast_devstate_changed(AST_DEVICE_NOT_INUSE, "Calendar:%s", event->owner->name);
} else {
ast_devstate_changed(AST_DEVICE_BUSY, "Calendar/%s", event->owner->name);
ast_devstate_changed(AST_DEVICE_BUSY, "Calendar:%s", event->owner->name);
}
event = ast_calendar_unref_event(event);