aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_configuration_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-06-25 19:36:44 +0200
committerChristian Grothoff <christian@grothoff.org>2017-06-25 19:36:44 +0200
commit981cc68a63c71ba11aaca84f559f3cf86a29c0ec (patch)
tree5196b264c461b609a128188e78a42b9972c845c3 /src/include/gnunet_configuration_lib.h
parent169f1c8c1db0a6d8cebf308ced1de064eadcdc4d (diff)
downloadgnunet-981cc68a63c71ba11aaca84f559f3cf86a29c0ec.tar.gz
gnunet-981cc68a63c71ba11aaca84f559f3cf86a29c0ec.zip
fix configuration parsing issue with inlines from configuration not in cwd
Diffstat (limited to 'src/include/gnunet_configuration_lib.h')
-rw-r--r--src/include/gnunet_configuration_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_configuration_lib.h b/src/include/gnunet_configuration_lib.h
index c1537e4f8..8a874da13 100644
--- a/src/include/gnunet_configuration_lib.h
+++ b/src/include/gnunet_configuration_lib.h
@@ -132,8 +132,8 @@ GNUNET_CONFIGURATION_serialize (const struct GNUNET_CONFIGURATION_Handle *cfg,
132 * @param cfg configuration to update 132 * @param cfg configuration to update
133 * @param mem the memory block of serialized configuration 133 * @param mem the memory block of serialized configuration
134 * @param size the size of the memory block 134 * @param size the size of the memory block
135 * @param allow_inline set to #GNUNET_YES if we recursively load configuration 135 * @param allow_inline set to the base directory if we recursively load configuration
136 * from inlined configurations; #GNUNET_NO if not and raise warnings 136 * from inlined configurations; NULL if not and raise warnings
137 * when we come across them 137 * when we come across them
138 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error 138 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
139 */ 139 */
@@ -141,7 +141,7 @@ int
141GNUNET_CONFIGURATION_deserialize (struct GNUNET_CONFIGURATION_Handle *cfg, 141GNUNET_CONFIGURATION_deserialize (struct GNUNET_CONFIGURATION_Handle *cfg,
142 const char *mem, 142 const char *mem,
143 size_t size, 143 size_t size,
144 int allow_inline); 144 const char *basedir);
145 145
146 146
147/** 147/**