aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-04-11 11:37:46 +0200
committerChristian Grothoff <christian@grothoff.org>2017-04-11 11:37:46 +0200
commit51e9f26b1014d6f935cacad7da75d98234653482 (patch)
treeecbd7394cfd571c8041767287ea17e7cb862f1ca /src/include
parent2b3d804abaff87da0b07f8f6da115a05f6664ebe (diff)
downloadgnunet-51e9f26b1014d6f935cacad7da75d98234653482.tar.gz
gnunet-51e9f26b1014d6f935cacad7da75d98234653482.zip
fix #4985
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_cadet_service.h2
-rw-r--r--src/include/gnunet_disk_lib.h3
2 files changed, 3 insertions, 2 deletions
diff --git a/src/include/gnunet_cadet_service.h b/src/include/gnunet_cadet_service.h
index f76f17a51..e2edbcc2c 100644
--- a/src/include/gnunet_cadet_service.h
+++ b/src/include/gnunet_cadet_service.h
@@ -221,7 +221,7 @@ GNUNET_CADET_disconnect (struct GNUNET_CADET_Handle *handle);
221 * Can be NULL. 221 * Can be NULL.
222 * @param disconnects Function called when a channel is disconnected. 222 * @param disconnects Function called when a channel is disconnected.
223 * @param handlers Callbacks for messages we care about, NULL-terminated. 223 * @param handlers Callbacks for messages we care about, NULL-terminated.
224 * @return Port handle. 224 * @return Port handle, NULL if port is in use
225 */ 225 */
226struct GNUNET_CADET_Port * 226struct GNUNET_CADET_Port *
227GNUNET_CADET_open_port (struct GNUNET_CADET_Handle *h, 227GNUNET_CADET_open_port (struct GNUNET_CADET_Handle *h,
diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h
index 02c4b3674..be2885460 100644
--- a/src/include/gnunet_disk_lib.h
+++ b/src/include/gnunet_disk_lib.h
@@ -331,7 +331,8 @@ GNUNET_DISK_file_seek (const struct GNUNET_DISK_FileHandle *h, off_t offset,
331 * @return #GNUNET_SYSERR on error, #GNUNET_OK on success 331 * @return #GNUNET_SYSERR on error, #GNUNET_OK on success
332 */ 332 */
333int 333int
334GNUNET_DISK_file_size (const char *filename, uint64_t *size, 334GNUNET_DISK_file_size (const char *filename,
335 uint64_t *size,
335 int include_symbolic_links, 336 int include_symbolic_links,
336 int single_file_mode); 337 int single_file_mode);
337 338