From 8bbde4f75e3613c4b8fb0d1c389141fc3b6f2335 Mon Sep 17 00:00:00 2001 From: Manfred Kaiser Date: Sun, 24 May 2026 09:53:42 +0200 Subject: [PATCH 2/2] 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. --- sandbox-seccomp-filter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/sandbox-seccomp-filter.c b/sandbox-seccomp-filter.c index a3c425ec1..ba4833f2c 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 -- 2.54.0