From: Daniel Hokka Zakrisson Date: Wed, 23 Jan 2008 10:38:17 +0000 (+0000) Subject: Use the correct syscall number. X-Git-Tag: release-0.30.215~36 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4598e043984b8ea127cf0bcffbd32b54e28d5675;p=util-vserver.git Use the correct syscall number. git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@2671 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/lib_internal/sys_unshare.h b/lib_internal/sys_unshare.h index 05cc4d7..a1a49f7 100644 --- a/lib_internal/sys_unshare.h +++ b/lib_internal/sys_unshare.h @@ -81,7 +81,7 @@ _syscall1(int, sys_unshare, int, flags) inline static UNUSED ALWAYSINLINE int sys_unshare(int flags) { - return syscall(__NR_sys_clone, flags); + return syscall(__NR_sys_unshare, flags); } #endif