From: Daniel Golle Date: Thu, 15 Jul 2021 01:03:38 +0000 (+0100) Subject: blockd: fix trigger name X-Git-Url: http://git.openwrt.org/?p=project%2Ffstools.git;a=commitdiff_plain;h=3386b6ba812e3dfe6e438a514d377a68800989f3 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 --- 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; }