- replace deprecated INCLUDES with AM_CPPFLAGS
[oweals/gnunet.git] / src / experimentation / gnunet-daemon-experimentation.c
index 3a2b71c83088c8b6e65eaace21133f3818c2ca51..60a515022ebb6172880503db8746677e075528b2 100644 (file)
 /**
  * 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 +77,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;