[Bug 2361] seccomp filter (not only) for aarch64
bugzilla-daemon at mindrot.org
bugzilla-daemon at mindrot.org
Fri Mar 6 03:35:27 AEDT 2015
https://bugzilla.mindrot.org/show_bug.cgi?id=2361
Dmitry V. Levin <ldv at altlinux.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ldv at altlinux.org
--- Comment #1 from Dmitry V. Levin <ldv at altlinux.org> ---
Wouldn't it be better if
+#if defined(__NR_stat64) && defined(__NR_fstat64)
+ SC_DENY(stat64, EACCES), /* ix86, arm */
+ SC_DENY(fstat64, EACCES),
+#endif
was written as
+#ifdef __NR_stat64
+ SC_DENY(stat64, EACCES), /* ix86, arm */
+#endif
+#ifdef __NR_fstat64
+ SC_DENY(fstat64, EACCES), /* ix86, arm */
+#endif
?
--
You are receiving this mail because:
You are watching the assignee of the bug.
More information about the openssh-bugs
mailing list