aboutsummaryrefslogtreecommitdiff
path: root/src/util/configuration.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-11-10 08:37:40 +0000
committerChristian Grothoff <christian@grothoff.org>2009-11-10 08:37:40 +0000
commitb4a9784abd12ddb0d038bae71bc3a0e74cbeaf78 (patch)
tree9b22c2d313ace21e10ed393441ac5114184dba84 /src/util/configuration.c
parent41742a4fddaf87bf8f894b8205aeed6146f99392 (diff)
downloadgnunet-b4a9784abd12ddb0d038bae71bc3a0e74cbeaf78.tar.gz
gnunet-b4a9784abd12ddb0d038bae71bc3a0e74cbeaf78.zip
fixing compile errors
Diffstat (limited to 'src/util/configuration.c')
-rw-r--r--src/util/configuration.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/configuration.c b/src/util/configuration.c
index bdcc231e1..0d056bf33 100644
--- a/src/util/configuration.c
+++ b/src/util/configuration.c
@@ -106,7 +106,7 @@ struct GNUNET_CONFIGURATION_Handle
106struct DiffHandle 106struct DiffHandle
107{ 107{
108 const struct GNUNET_CONFIGURATION_Handle *cfgDefault; 108 const struct GNUNET_CONFIGURATION_Handle *cfgDefault;
109 const struct GNUNET_CONFIGURATION_Handle *cfgDiff; 109 struct GNUNET_CONFIGURATION_Handle *cfgDiff;
110}; 110};
111 111
112 112
@@ -495,6 +495,7 @@ compareEntries (void *cls,
495 (strcmp (entNew->val, value) == 0) ) 495 (strcmp (entNew->val, value) == 0) )
496 return; 496 return;
497 GNUNET_CONFIGURATION_set_value_string (dh->cfgDiff, 497 GNUNET_CONFIGURATION_set_value_string (dh->cfgDiff,
498 section,
498 option, 499 option,
499 value); 500 value);
500} 501}