Commit d490bb6c authored by James Hogan's avatar James Hogan Committed by Peter Korsgaard
Browse files

strace: remove undef-CTL_PROC patch



This patch is no longer necessary since strace-v4.5.15 which always
defines CTL_PROC. Specifically strace git commit
35a55785ea8ff44d214af52085e3a5ea624730aa.

Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 7c9549e8
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
--- a/system.c
+++ b/system.c
@@ -1614,7 +1614,9 @@ static const struct xlat sysctl_root[] =
 	{ CTL_KERN, "CTL_KERN" },
 	{ CTL_VM, "CTL_VM" },
 	{ CTL_NET, "CTL_NET" },
+#ifdef CTL_PROC
 	{ CTL_PROC, "CTL_PROC" },
+#endif
 	{ CTL_FS, "CTL_FS" },
 	{ CTL_DEBUG, "CTL_DEBUG" },
 	{ CTL_DEV, "CTL_DEV" },