-remove async ecc key generation, not needed
[oweals/gnunet.git] / src / util / gnunet-config.c
index c91153f69914e1bd476dcaeb8327f8c7dd4bfdc5..e1aa94a5c774f4ab5edb57f88c4cb0283c608ffe 100644 (file)
@@ -106,8 +106,8 @@ run (void *cls, char *const *args, const char *cfgfile,
        if (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_filename (cfg, section, option, &value))
        {
-         fprintf (stderr, _("No value for option `%s' in section `%s'\n"),
-                  option, section);
+         GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+                                    section, option);
          ret = 3;
          return;
        }
@@ -117,8 +117,8 @@ run (void *cls, char *const *args, const char *cfgfile,
        if (GNUNET_OK !=
            GNUNET_CONFIGURATION_get_value_string (cfg, section, option, &value))
        {
-         fprintf (stderr, _("No value for option `%s' in section `%s'\n"),
-                  option, section);
+         GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+                                    section, option);
          ret = 3;
          return;
        }
@@ -170,14 +170,15 @@ main (int argc, char *const *argv)
       1, &GNUNET_GETOPT_set_string, &value },
     GNUNET_GETOPT_OPTION_END
   };
-
   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
     return 2;
 
-  return (GNUNET_OK ==
-          GNUNET_PROGRAM_run (argc, argv, "gnunet-config [OPTIONS]",
-                              gettext_noop ("Manipulate GNUnet configuration files"),
-                              options, &run, NULL)) ? 0 : ret;
+  ret = (GNUNET_OK ==
+        GNUNET_PROGRAM_run (argc, argv, "gnunet-config [OPTIONS]",
+                            gettext_noop ("Manipulate GNUnet configuration files"),
+                            options, &run, NULL)) ? 0 : ret;
+  GNUNET_free ((void*) argv);
+  return ret;
 }
 
 /* end of gnunet-config.c */