remove spaces etc. at end of line (no functional change)

This commit is contained in:
2019-10-02 22:06:19 +02:00
parent ad6fb8d731
commit 1549603c9b
11 changed files with 27 additions and 27 deletions

View File

@@ -175,7 +175,7 @@ bool SandboxLinux::enableForInit()
{
umask(0027);
//TODO. there is execv for SPARC. Sigh...
//TODO. there is execv for SPARC. Sigh...
if(!seccomp_blacklist({ SCMP_SYS(execveat), SCMP_SYS(execve) }))
{
Logger::error() << "Failed to install blacklisting seccomp filter";

View File

@@ -20,7 +20,7 @@ public:
/* Activated after we have acquired resources (bound to ports etc.)
*
*
* This should allow us to further restrcit the process */
virtual bool enableForWorker() = 0;
};