aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-04-15 14:56:11 +0000
committerChristian Grothoff <christian@grothoff.org>2013-04-15 14:56:11 +0000
commit4e668e13d72a1fc55abfe69578c0486fdf02cd78 (patch)
treeb510149c50740046fec4278626fb22d5c693e102 /src
parente2bafbfb7a89e05f7dcbe3660d98e77184aa779c (diff)
-no boolean
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_os_lib.h2
-rw-r--r--src/util/os_installation.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_os_lib.h b/src/include/gnunet_os_lib.h
index 425c565bac..3496937a69 100644
--- a/src/include/gnunet_os_lib.h
+++ b/src/include/gnunet_os_lib.h
@@ -495,7 +495,7 @@ GNUNET_OS_install_parent_control_handler (void *cls,
* GNUNET_SYSERR on error (no such binary or not executable)
*/
int
-GNUNET_OS_check_helper_binary (const char *binary, const boolean check_suid, const char * params);
+GNUNET_OS_check_helper_binary (const char *binary, int check_suid, const char * params);
#if 0 /* keep Emacsens' auto-indent happy */
diff --git a/src/util/os_installation.c b/src/util/os_installation.c
index 8445fd1ccc..6e0754b21e 100644
--- a/src/util/os_installation.c
+++ b/src/util/os_installation.c
@@ -664,7 +664,7 @@ GNUNET_OS_get_libexec_binary_path (const char *progname)
* GNUNET_SYSERR on error (no such binary or not executable)
*/
int
-GNUNET_OS_check_helper_binary (const char *binary, const boolean check_suid, const char *params)
+GNUNET_OS_check_helper_binary (const char *binary, int check_suid, const char *params)
{
struct stat statbuf;
char *p;