From 3386b6ba812e3dfe6e438a514d377a68800989f3 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Thu, 15 Jul 2021 02:03:38 +0100 Subject: blockd: fix trigger name Make it 'mount.add' instead of just 'add' which is more obvious when used with procd_add_raw_trigger. Signed-off-by: Daniel Golle --- blockd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/blockd.c b/blockd.c index 541fedc..0520009 100644 --- a/blockd.c +++ b/blockd.c @@ -499,15 +499,18 @@ static int send_block_notification(struct ubus_context *ctx, const char *action, const char *devname) { struct blob_buf buf = { 0 }; + char evname[16] = "mount."; int err; if (!ctx) return -ENXIO; + strncat(evname, action, sizeof(evname) - 1); + blob_buf_init(&buf, 0); blobmsg_add_string(&buf, "devname", devname); - err = ubus_notify(ctx, &block_object, action, buf.head, -1); + err = ubus_notify(ctx, &block_object, evname, buf.head, -1); return err; } -- cgit v1.2.1