1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-24 10:50:22 +03:00

uid_wrapper: Fix Tab/indent error with python3

Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Noel Power <npower@samba.org>
Autobuild-Date(master): Wed Sep 19 17:49:33 CEST 2018 on sn-devel-144
This commit is contained in:
Noel Power 2018-09-17 14:17:25 +02:00 committed by Noel Power
parent 8b4ec1c26e
commit e5298c8bc1

View File

@ -59,13 +59,13 @@ def configure(conf):
addmain=False,
strict=True,
msg='Checking for printf format validation support')
# Prototype checks
conf.CHECK_C_PROTOTYPE('setgroups',
'int setgroups(int ngroups, const gid_t *grouplist)',
define='HAVE_SETGROUPS_INT', headers='unistd.h sys/types.h')
conf.CHECK_C_PROTOTYPE('syscall',
'int syscall(int number, ...)',
define='HAVE_SYSCALL_INT', headers='unistd.h sys/syscall.h')
# Prototype checks
conf.CHECK_C_PROTOTYPE('setgroups',
'int setgroups(int ngroups, const gid_t *grouplist)',
define='HAVE_SETGROUPS_INT', headers='unistd.h sys/types.h')
conf.CHECK_C_PROTOTYPE('syscall',
'int syscall(int number, ...)',
define='HAVE_SYSCALL_INT', headers='unistd.h sys/syscall.h')
if (sys.platform.rfind('linux') > -1):
conf.CHECK_CODE('''