From d026cfbb03b7ba80a8e4f1be528100dedcd7b1d6 Mon Sep 17 00:00:00 2001 From: Astronand Date: Sat, 21 Feb 2026 15:06:54 -0500 Subject: [PATCH] cleaned syscalls --- .../lib/modules/Hyperion/40_auth.kmod | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Src/Hyperion-kernel/lib/modules/Hyperion/40_auth.kmod b/Src/Hyperion-kernel/lib/modules/Hyperion/40_auth.kmod index 71a9c43..f8b017b 100644 --- a/Src/Hyperion-kernel/lib/modules/Hyperion/40_auth.kmod +++ b/Src/Hyperion-kernel/lib/modules/Hyperion/40_auth.kmod @@ -607,19 +607,19 @@ function auth.elevate(targetUsername, password) end if kernel.syscalls then - kernel.syscalls["auth_login"] = auth.login - kernel.syscalls["auth_setpassword"] = auth.setPassword - kernel.syscalls["auth_setusername"] = auth.setUsername - kernel.syscalls["auth_newuser"] = auth.newUser - kernel.syscalls["auth_whoami"] = auth.whoami - kernel.syscalls["auth_getuid"] = auth.getUID - kernel.syscalls["auth_getpasswd"] = auth.getPasswd - kernel.syscalls["auth_elevate"] = auth.elevate - kernel.syscalls["auth_deleteuser"] = auth.deleteUser - kernel.syscalls["auth_lockuser"] = auth.lockUser - kernel.syscalls["auth_unlockuser"] = auth.unlockUser - kernel.syscalls["auth_listusers"] = auth.listUsers - kernel.syscalls["auth_setshell"] = auth.setShell - kernel.syscalls["auth_sethomedir"] = auth.setHomedir - kernel.syscalls["auth_setgid"] = auth.setGID + kernel.syscalls["login"] = auth.login + kernel.syscalls["setpassword"] = auth.setPassword + kernel.syscalls["setusername"] = auth.setUsername + kernel.syscalls["newuser"] = auth.newUser + kernel.syscalls["whoami"] = auth.whoami + kernel.syscalls["getuid"] = auth.getUID + kernel.syscalls["getpasswd"] = auth.getPasswd + kernel.syscalls["elevate"] = auth.elevate + kernel.syscalls["deleteuser"] = auth.deleteUser + kernel.syscalls["lockuser"] = auth.lockUser + kernel.syscalls["unlockuser"] = auth.unlockUser + kernel.syscalls["listusers"] = auth.listUsers + kernel.syscalls["setshell"] = auth.setShell + kernel.syscalls["sethomedir"] = auth.setHomedir + kernel.syscalls["setgid"] = auth.setGID end