Handle SYS_setns not existing but __NR_setns does.

On some older Fedora distros SYS_setns was not defined, but
__NR_setns is a usable replacement.

Signed-off-by: Benoit Sigoure <tsunanet@gmail.com>
This commit is contained in:
Benoit Sigoure 2015-06-13 22:49:52 -07:00
parent 61adc0d9c5
commit 6aeb7e1fa5
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ static int child_func(void *_arg)
#if __GLIBC__ == 2 && __GLIBC_MINOR__ < 14
#define _GNU_SOURCE
#include "syscall.h"
#if defined(__NR_setns) && !defined(SYS_setns)
#define SYS_setns __NR_setns
#endif
#ifdef SYS_setns
int setns(int fd, int nstype)
{