summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsource3/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/wscript b/source3/wscript
index f28cad128b..bd6ddcf421 100755
--- a/source3/wscript
+++ b/source3/wscript
@@ -775,7 +775,7 @@ syscall(SYS_setgroups32, 0, NULL);
msg="Checking whether Linux should use 32-bit credential calls");
if (conf.CONFIG_SET('USE_LINUX_32BIT_SYSCALLS')):
- seteuid = conf.CHECK_CODE('''
+ seteuid = conf.CHECK_CODE('''
#define AUTOCONF_TEST 1
#define USE_LINUX_THREAD_CREDENTIALS 1
#define USE_LINUX_32BIT_SYSCALLS 1
@@ -787,7 +787,7 @@ syscall(SYS_setgroups32, 0, NULL);
execute=True,
msg="Checking whether we can use Linux thread-specific credentials with 32-bit system calls")
else:
- seteuid = conf.CHECK_CODE('''
+ seteuid = conf.CHECK_CODE('''
#define AUTOCONF_TEST 1
#define USE_LINUX_THREAD_CREDENTIALS 1
#include "../lib/util/setid.c"