summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--service/trigger.c10
-rw-r--r--service/watch.c2
2 files changed, 10 insertions, 2 deletions
diff --git a/service/trigger.c b/service/trigger.c
index 9fb77cd..ced758b 100644
--- a/service/trigger.c
+++ b/service/trigger.c
@@ -323,6 +323,14 @@ void trigger_init(void)
q.max_running_tasks = 1;
}
+static int trigger_match(const char *event, const char *match)
+{
+ char *wildcard = strstr(match, ".*");
+ if (wildcard)
+ return strncmp(event, match, wildcard - match);
+ return strcmp(event, match);
+}
+
void trigger_event(const char *type, struct blob_attr *data)
{
struct trigger *t;
@@ -330,7 +338,7 @@ void trigger_event(const char *type, struct blob_attr *data)
list_for_each_entry(t, &triggers, list) {
if (t->pending || t->remove)
continue;
- if (!strcmp(t->type, type)) {
+ if (!trigger_match(type, t->type)) {
if (t->timeout) {
free(t->data);
t->data = blob_memdup(data);
diff --git a/service/watch.c b/service/watch.c
index 1d7cf78..fd44a16 100644
--- a/service/watch.c
+++ b/service/watch.c
@@ -104,7 +104,7 @@ watch_notify_cb(struct ubus_context *ctx, struct ubus_object *obj,
char *str;
str = blobmsg_format_json(msg, true);
- LOG("Received ubus notify '%s': %s\n", method, str);
+ DEBUG(3, "Received ubus notify '%s': %s\n", method, str);
free(str);
}