diff options
author | John Crispin <blogic@openwrt.org> | 2014-06-16 17:52:18 +0200 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-06-16 17:52:42 +0200 |
commit | 9c9c71a4e476be1e93f4d4c2c0527b5df0ff3c90 (patch) | |
tree | 7f80495ffd6d346c817082751e8bd015be15c51f | |
parent | efc491fd9345c38054ce96503c3bf846a19e9260 (diff) | |
download | unitd-9c9c71a4e476be1e93f4d4c2c0527b5df0ff3c90.tar unitd-9c9c71a4e476be1e93f4d4c2c0527b5df0ff3c90.zip |
rename the folder option to path
Signed-off-by: John Crispin <blogic@openwrt.org>
-rw-r--r-- | system.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -287,21 +287,21 @@ static int proc_signal(struct ubus_context *ctx, struct ubus_object *obj, } enum { - NAND_FOLDER, + NAND_PATH, __NAND_MAX }; static const struct blobmsg_policy nand_policy[__NAND_MAX] = { - [NAND_FOLDER] = { .name = "folder", .type = BLOBMSG_TYPE_STRING }, + [NAND_PATH] = { .name = "path", .type = BLOBMSG_TYPE_STRING }, }; static void -procd_spawn_upgraded(char *folder) +procd_spawn_upgraded(char *path) { char *wdt_fd = watchdog_fd(); char *argv[] = { "/tmp/upgraded", NULL, NULL}; - argv[1] = folder; + argv[1] = path; DEBUG(2, "Exec to upgraded now\n"); if (wdt_fd) { @@ -321,10 +321,10 @@ static int nand_set(struct ubus_context *ctx, struct ubus_object *obj, return UBUS_STATUS_INVALID_ARGUMENT; blobmsg_parse(nand_policy, __NAND_MAX, tb, blob_data(msg), blob_len(msg)); - if (!tb[NAND_FOLDER]) + if (!tb[NAND_PATH]) return UBUS_STATUS_INVALID_ARGUMENT; - procd_spawn_upgraded(blobmsg_get_string(tb[NAND_FOLDER])); + procd_spawn_upgraded(blobmsg_get_string(tb[NAND_PATH])); fprintf(stderr, "Yikees, something went wrong. no /sbin/upgraded ?\n"); return 0; } |