- doxygen
[oweals/gnunet.git] / src / experimentation / gnunet-daemon-experimentation.c
index 3a2b71c83088c8b6e65eaace21133f3818c2ca51..e0ebdf3654ec1f454003cd3bd6390ff9e84fd13c 100644 (file)
@@ -25,7 +25,6 @@
  * @author Matthias Wachs
  */
 #include "platform.h"
-#include "gnunet_getopt_lib.h"
 #include "gnunet_util_lib.h"
 #include "gnunet_core_service.h"
 #include "gnunet_statistics_service.h"
 /**
  * Statistics handle shared between components
  */
-struct GNUNET_STATISTICS_Handle *GSE_stats;
+struct GNUNET_STATISTICS_Handle *GED_stats;
 
 
 /**
  * Configuration handle shared between components
  */
-struct GNUNET_CONFIGURATION_Handle *GSE_cfg;
+struct GNUNET_CONFIGURATION_Handle *GED_cfg;
 
 
 /**
@@ -77,9 +76,9 @@ run (void *cls, char *const *args, const char *cfgfile,
 {
        GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Experimentation daemon starting ...\n"));
 
-       GSE_cfg = (struct GNUNET_CONFIGURATION_Handle *) cfg;
-       GSE_stats = GNUNET_STATISTICS_create ("experimentation", cfg);
-       if (NULL == GSE_stats)
+       GED_cfg = (struct GNUNET_CONFIGURATION_Handle *) cfg;
+       GED_stats = GNUNET_STATISTICS_create ("experimentation", cfg);
+       if (NULL == GED_stats)
        {
                GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to create statistics!\n"));
                return;