diff --git a/daemon/main.c b/daemon/main.c index b5cf9da8c..2ca01cda0 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -1583,6 +1583,14 @@ RTPE_CONFIG_ENUM_PARAMS #define X(s) ini_rtpe_cfg->s = g_strdup(rtpe_config.s); RTPE_CONFIG_CHARP_PARAMS +#undef X + +#define X(s) ini_rtpe_cfg->s = g_strdupv(rtpe_config.s); +RTPE_CONFIG_CHARPP_PARAMS +#undef X + +#define X(s) ini_rtpe_cfg->s = str_dup_str(&rtpe_config.s); +RTPE_CONFIG_STR_PARAMS #undef X memcpy(&ini_rtpe_cfg->common.log_levels, &rtpe_config.common.log_levels, sizeof(ini_rtpe_cfg->common.log_levels));