From: Christian Grothoff Date: Sun, 25 Sep 2016 18:46:43 +0000 (+0000) Subject: want himBHexpansion, but not path-prefixing X-Git-Tag: initial-import-from-subversion-38251~205 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=aa3d0dc77048dad13943dcf4a611d5131a9a01c5;p=oweals%2Fgnunet.git want himBHexpansion, but not path-prefixing --- diff --git a/src/arm/arm_api.c b/src/arm/arm_api.c index 3fcb75814..2967e62b7 100644 --- a/src/arm/arm_api.c +++ b/src/arm/arm_api.c @@ -597,17 +597,23 @@ start_arm_service (struct GNUNET_ARM_Handle *h, char *lopostfix; if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_filename (h->cfg, - "arm", - "PREFIX", - &loprefix)) + GNUNET_CONFIGURATION_get_value_string (h->cfg, + "arm", + "PREFIX", + &loprefix)) loprefix = GNUNET_strdup (""); + else + loprefix = GNUNET_CONFIGURATION_expand_dollar (h->cfg, + loprefix); if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_filename (h->cfg, - "arm", - "OPTIONS", - &lopostfix)) + GNUNET_CONFIGURATION_get_value_string (h->cfg, + "arm", + "OPTIONS", + &lopostfix)) lopostfix = GNUNET_strdup (""); + else + lopostfix = GNUNET_CONFIGURATION_expand_dollar (h->cfg, + lopostfix); if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (h->cfg, "arm", diff --git a/src/arm/gnunet-service-arm.c b/src/arm/gnunet-service-arm.c index 8c5113774..5bf823656 100644 --- a/src/arm/gnunet-service-arm.c +++ b/src/arm/gnunet-service-arm.c @@ -380,18 +380,23 @@ start_process (struct ServiceList *sl, /* obtain configuration */ if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_filename (cfg, - sl->name, - "PREFIX", - &loprefix)) + GNUNET_CONFIGURATION_get_value_string (cfg, + sl->name, + "PREFIX", + &loprefix)) loprefix = GNUNET_strdup (prefix_command); + else + loprefix = GNUNET_CONFIGURATION_expand_dollar (cfg, + loprefix); if (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_filename (cfg, - sl->name, - "OPTIONS", - &options)) + GNUNET_CONFIGURATION_get_value_string (cfg, + sl->name, + "OPTIONS", + &options)) options = NULL; - + else + options = GNUNET_CONFIGURATION_expand_dollar (cfg, + options); { char *new_options; char *optpos; @@ -1555,7 +1560,8 @@ setup_service (void *cls, } config = NULL; if (( (GNUNET_OK != - GNUNET_CONFIGURATION_get_value_filename (cfg, section, + GNUNET_CONFIGURATION_get_value_filename (cfg, + section, "CONFIG", &config)) && (GNUNET_OK != @@ -1744,12 +1750,18 @@ run (void *cls, "GLOBAL_PREFIX", &prefix_command)) prefix_command = GNUNET_strdup (""); + else + prefix_command = GNUNET_CONFIGURATION_expand_dollar (cfg, + prefix_command); if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "ARM", "GLOBAL_POSTFIX", &final_option)) final_option = GNUNET_strdup (""); + else + final_option = GNUNET_CONFIGURATION_expand_dollar (cfg, + final_option); if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno (cfg, "ARM",