From 3f24301fff9c544dfe2b89c5737bc3cdf94ef9a9 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Mon, 27 Nov 2023 14:43:10 +0100 Subject: include: Rename layer.layer_name to layer.name The layer_info had a member layer_name which is a bit redundant. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/irmd/configfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/irmd/configfile.c') diff --git a/src/irmd/configfile.c b/src/irmd/configfile.c index 42a8a152..07f31ccf 100644 --- a/src/irmd/configfile.c +++ b/src/irmd/configfile.c @@ -516,13 +516,13 @@ static int toml_ipcp(toml_table_t * table, if (ret < 0) return -1; - strcpy(conf->layer_info.layer_name, bootstrap.u.s); + strcpy(conf->layer_info.name, bootstrap.u.s); free(bootstrap.u.s); if (bootstrap_ipcp(pid, conf) < 0) return -1; - if (toml_autobind(table, pid, name, conf->layer_info.layer_name) < 0) + if (toml_autobind(table, pid, name, conf->layer_info.name) < 0) return -1; if (toml_register(table, pid) < 0) { -- cgit v1.2.3