From: Christian Grothoff Date: Sun, 10 Nov 2019 22:14:30 +0000 (+0100) Subject: fix X-Git-Tag: v0.12.0~137 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3d3c271c20f795c78867e2c0b9c771695a6ad0ef;p=oweals%2Fgnunet.git fix --- diff --git a/src/include/gnunet_network_lib.h b/src/include/gnunet_network_lib.h index 15d4a8ada..47a5b853f 100644 --- a/src/include/gnunet_network_lib.h +++ b/src/include/gnunet_network_lib.h @@ -125,7 +125,7 @@ GNUNET_NETWORK_socket_accept (const struct GNUNET_NETWORK_Handle *desc, * @return NULL on error (including not supported on target platform) */ struct GNUNET_NETWORK_Handle * -GNUNET_NETWORK_socket_box_native (SOCKTYPE fd); +GNUNET_NETWORK_socket_box_native (int fd); /** diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h index 2eada2783..50e9a4c92 100644 --- a/src/include/gnunet_os_lib.h +++ b/src/include/gnunet_os_lib.h @@ -522,7 +522,7 @@ GNUNET_OS_start_process_va (int pipe_control, struct GNUNET_OS_Process * GNUNET_OS_start_process_v (int pipe_control, enum GNUNET_OS_InheritStdioFlags std_inheritance, - const SOCKTYPE *lsocks, + const int *lsocks, const char *filename, char *const argv[]); @@ -548,7 +548,7 @@ GNUNET_OS_start_process_v (int pipe_control, struct GNUNET_OS_Process * GNUNET_OS_start_process_s (int pipe_control, unsigned int std_inheritance, - const SOCKTYPE *lsocks, + const int *lsocks, const char *filename, ...);