|
From: James C. <cl...@cc...> - 2008-09-26 19:32:08
|
Just a small patch so that the PTRCHECK branch can handle the chown32
syscall. It's needed for several programs (e.g. gzip). If there's a
better / prefered way to submit this just let me know.
Index: exp-ptrcheck/h_main.c
===================================================================
--- exp-ptrcheck/h_main.c (revision 8634)
+++ exp-ptrcheck/h_main.c (working copy)
@@ -2096,6 +2096,9 @@
# endif
ADD(0, __NR_chmod);
ADD(0, __NR_chown);
+# if defined(chown32)
+ ADD(0, __NR_chown32);
+# endif
ADD(0, __NR_clock_getres);
ADD(0, __NR_clock_gettime);
ADD(0, __NR_clone);
|