aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_configuration_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-11 14:49:51 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-11 14:49:51 +0000
commit3dd666cbad61490c0de1cb891fd1b36c8536c348 (patch)
treef840adee073595cb4df010eb2b823486736db2e7 /src/include/gnunet_configuration_lib.h
parent08d6c382e9224d1ef91f8fda4030e8665b41d5d6 (diff)
downloadgnunet-3dd666cbad61490c0de1cb891fd1b36c8536c348.tar.gz
gnunet-3dd666cbad61490c0de1cb891fd1b36c8536c348.zip
-doxygen / coding convention fixes
Diffstat (limited to 'src/include/gnunet_configuration_lib.h')
-rw-r--r--src/include/gnunet_configuration_lib.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/gnunet_configuration_lib.h b/src/include/gnunet_configuration_lib.h
index 6d0c04dbb..334d81367 100644
--- a/src/include/gnunet_configuration_lib.h
+++ b/src/include/gnunet_configuration_lib.h
@@ -154,30 +154,30 @@ GNUNET_CONFIGURATION_write (struct GNUNET_CONFIGURATION_Handle *cfg,
154 154
155/** 155/**
156 * Write only configuration entries that have been changed to configuration file 156 * Write only configuration entries that have been changed to configuration file
157 * @param cfgDefault default configuration 157 * @param cfg_default default configuration
158 * @param cfgNew new configuration 158 * @param cfg_new new configuration
159 * @param filename where to write the configuration diff between default and new 159 * @param filename where to write the configuration diff between default and new
160 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error 160 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
161 */ 161 */
162int 162int
163GNUNET_CONFIGURATION_write_diffs (const struct GNUNET_CONFIGURATION_Handle 163GNUNET_CONFIGURATION_write_diffs (const struct GNUNET_CONFIGURATION_Handle
164 *cfgDefault, 164 *cfg_default,
165 const struct GNUNET_CONFIGURATION_Handle 165 const struct GNUNET_CONFIGURATION_Handle
166 *cfgNew, const char *filename); 166 *cfg_new, const char *filename);
167 167
168 168
169/** 169/**
170 * Compute configuration with only entries that have been changed 170 * Compute configuration with only entries that have been changed
171 * 171 *
172 * @param cfgDefault original configuration 172 * @param cfg_default original configuration
173 * @param cfgNew new configuration 173 * @param cfg_new new configuration
174 * @return configuration with only the differences, never NULL 174 * @return configuration with only the differences, never NULL
175 */ 175 */
176struct GNUNET_CONFIGURATION_Handle * 176struct GNUNET_CONFIGURATION_Handle *
177GNUNET_CONFIGURATION_get_diff (const struct GNUNET_CONFIGURATION_Handle 177GNUNET_CONFIGURATION_get_diff (const struct GNUNET_CONFIGURATION_Handle
178 *cfgDefault, 178 *cfg_default,
179 const struct GNUNET_CONFIGURATION_Handle 179 const struct GNUNET_CONFIGURATION_Handle
180 *cfgNew); 180 *cfg_new);
181 181
182 182
183/** 183/**