From: Manfred Kaiser Date: Sun, 24 May 2026 07:53:42 +0000 (+0200) Subject: sandbox-seccomp-filter: remove duplicate SC_ALLOW(__NR_clock_gettime64) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=4f4aeee6edaa248f1e7ce22ee3f35ce183eabf38;p=thirdparty%2Fopenssh-portable.git sandbox-seccomp-filter: remove duplicate SC_ALLOW(__NR_clock_gettime64) The syscall is already permitted at line 297 in its own ifdef guard. No functional change. --- diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index 7b2444930..67a8a82aa 100644 --- a/sandbox-seccomp-filter.c +++ b/sandbox-seccomp-filter.c @@ -381,9 +381,6 @@ static const struct sock_filter preauth_insns[] = { #ifdef __NR_clock_nanosleep_time64 SC_ALLOW(__NR_clock_nanosleep_time64), #endif -#ifdef __NR_clock_gettime64 - SC_ALLOW(__NR_clock_gettime64), -#endif #ifdef __NR__newselect SC_ALLOW(__NR__newselect), #endif