diff src/lib/restrict-access.h @ 3863:55df57c028d4 HEAD

Added "bool" type and changed all ints that were used as booleans to bool.
author Timo Sirainen <tss@iki.fi>
date Fri, 13 Jan 2006 22:25:57 +0200
parents 8690d2000e33
children e4eb71ae8e96
line wrap: on
line diff
--- a/src/lib/restrict-access.h	Fri Jan 13 17:11:47 2006 +0200
+++ b/src/lib/restrict-access.h	Fri Jan 13 22:25:57 2006 +0200
@@ -11,6 +11,6 @@
 /* chroot, setuid() and setgid() based on environment variables.
    If disallow_roots is TRUE, we'll kill ourself if we didn't have the
    environment settings and we have root uid or gid. */
-void restrict_access_by_env(int disallow_root);
+void restrict_access_by_env(bool disallow_root);
 
 #endif