diff options
Diffstat (limited to 'src/irmd/configfile.c')
-rw-r--r-- | src/irmd/configfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |