aboutsummaryrefslogtreecommitdiff
path: root/src/arm/arm_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-09-24 20:33:43 +0000
committerChristian Grothoff <christian@grothoff.org>2016-09-24 20:33:43 +0000
commite35797e3ca7ce8636289907ca4aa4e1a7c4cfd1f (patch)
tree4662809abff09421cebacc6ddd3b3194b179c28d /src/arm/arm_api.c
parent474599b488b51b998464321ff25219d366b31e94 (diff)
downloadgnunet-e35797e3ca7ce8636289907ca4aa4e1a7c4cfd1f.tar.gz
gnunet-e35797e3ca7ce8636289907ca4aa4e1a7c4cfd1f.zip
fix #4672
Diffstat (limited to 'src/arm/arm_api.c')
-rw-r--r--src/arm/arm_api.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/arm/arm_api.c b/src/arm/arm_api.c
index 5c4a1c794..20ba7f9af 100644
--- a/src/arm/arm_api.c
+++ b/src/arm/arm_api.c
@@ -597,22 +597,22 @@ start_arm_service (struct GNUNET_ARM_Handle *h,
597 char *lopostfix; 597 char *lopostfix;
598 598
599 if (GNUNET_OK != 599 if (GNUNET_OK !=
600 GNUNET_CONFIGURATION_get_value_string (h->cfg, 600 GNUNET_CONFIGURATION_get_value_filename (h->cfg,
601 "arm", 601 "arm",
602 "PREFIX", 602 "PREFIX",
603 &loprefix)) 603 &loprefix))
604 loprefix = GNUNET_strdup (""); 604 loprefix = GNUNET_strdup ("");
605 if (GNUNET_OK != 605 if (GNUNET_OK !=
606 GNUNET_CONFIGURATION_get_value_string (h->cfg, 606 GNUNET_CONFIGURATION_get_value_filename (h->cfg,
607 "arm", 607 "arm",
608 "OPTIONS", 608 "OPTIONS",
609 &lopostfix)) 609 &lopostfix))
610 lopostfix = GNUNET_strdup (""); 610 lopostfix = GNUNET_strdup ("");
611 if (GNUNET_OK != 611 if (GNUNET_OK !=
612 GNUNET_CONFIGURATION_get_value_string (h->cfg, 612 GNUNET_CONFIGURATION_get_value_filename (h->cfg,
613 "arm", 613 "arm",
614 "BINARY", 614 "BINARY",
615 &cbinary)) 615 &cbinary))
616 { 616 {
617 GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING, 617 GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
618 "arm", 618 "arm",