https://bugzilla.mindrot.org/show_bug.cgi?id=2361

Dmitry V. Levin <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Dmitry V. Levin <[email protected]> ---
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.
_______________________________________________
openssh-bugs mailing list
[email protected]
https://lists.mindrot.org/mailman/listinfo/openssh-bugs

Reply via email to