From 37386b857aea6affa883940bed6b241bfcc039aa Mon Sep 17 00:00:00 2001 From: cpunch Date: Wed, 2 Oct 2024 18:27:41 -0500 Subject: [PATCH] change wiki sandbox link to openfusion.dev mirror --- src/sandbox/seccomp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sandbox/seccomp.cpp b/src/sandbox/seccomp.cpp index 9f145d8..0680d6a 100644 --- a/src/sandbox/seccomp.cpp +++ b/src/sandbox/seccomp.cpp @@ -307,7 +307,7 @@ void sig_sys_handler(int signo, siginfo_t *info, void *context) // report the unhandled syscall std::cout << "[FATAL] Unhandled syscall: " << info->si_syscall << std::endl; - std::cout << "If you're unsure why this is happening, please read https://github.com/OpenFusionProject/OpenFusion/wiki/The-Sandbox" << std::endl + std::cout << "If you're unsure why this is happening, please read https://openfusion.dev/docs/development/the-sandbox/" << std::endl << "for more information and possibly open an issue at https://github.com/OpenFusionProject/OpenFusion/issues to report" << " needed changes in our seccomp filter." << std::endl;