summaryrefslogtreecommitdiff
path: root/main/event.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2011-06-15 00:51:01 +0000
committerRichard Mudgett <rmudgett@digium.com>2011-06-15 00:51:01 +0000
commit70d9527951d411ff1760ff2161ecbd088d36d105 (patch)
tree52c26f01261957840f5a967d38e41648742a4534 /main/event.c
parent9ff8844c7f812ce4e5151beb746c0ed9a93d6cb2 (diff)
Merged revisions 323456 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r323456 | rmudgett | 2011-06-14 19:50:20 -0500 (Tue, 14 Jun 2011) | 1 line Add missing break in ast_event_get_cached(). ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@323457 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/event.c')
-rw-r--r--main/event.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/event.c b/main/event.c
index 246821eac..81dd7c96f 100644
--- a/main/event.c
+++ b/main/event.c
@@ -381,12 +381,12 @@ static int match_sub_ie_val_to_event(const struct ast_event_ie_val *sub_ie_val,
int res = 0;
AST_LIST_TRAVERSE(&check_ie_vals->ie_vals, event_ie_val, entry) {
- if (event_ie_val->ie_type == sub_ie_val->ie_type) {
+ if (sub_ie_val->ie_type == event_ie_val->ie_type) {
break;
}
}
if (!event_ie_val) {
- /* The did not find the event ie the subscriber cares about. */
+ /* We did not find the event ie the subscriber cares about. */
return 0;
}
@@ -1340,6 +1340,7 @@ struct ast_event *ast_event_get_cached(enum ast_event_type type, ...)
void *data = va_arg(ap, void *);
size_t datalen = va_arg(ap, size_t);
ast_event_append_ie_raw(&cache_arg_event, ie_type, data, datalen);
+ break;
}
case AST_EVENT_IE_PLTYPE_EXISTS:
ast_log(LOG_WARNING, "PLTYPE_EXISTS not supported by this function\n");