Преглед на файлове

setegid: use setresgid conditionally

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer преди 13 години
родител
ревизия
2f88f917c2
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  1. 6 0
      libc/sysdeps/linux/common/setegid.c

+ 6 - 0
libc/sysdeps/linux/common/setegid.c

@@ -11,6 +11,12 @@
 #include <sys/types.h>
 #include <sys/syscall.h>
 
+
+#if !defined __UCLIBC_LINUX_SPECIFIC__
+#undef __NR_setresgid
+#undef __NR_setresgid32
+#endif
+
 int setegid(gid_t gid)
 {
     int result;